/* Generic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed";
    position: relative;
}

:root {
    --nimbrewWhite:#f8f7ff;
    --nimbrewGrey: #404c52;
    --nimbrewText: #003049;
    --nimbrewBlack: #222222;
}

html{
    overflow-x:hidden;
}

body {
    background: var(--nimbrewGrey);
    overflow-x: hidden;
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.hidden {
    display: none !important;
}

.main {
    height: fit-content;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 0px 48px;

}

.main .mainBg {
    background: var(--nimbrewWhite);
    transform: skewY(-2deg);
    overflow: visible;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 20px 0px var(--nimbrewBlack);
    z-index: -1;
}

.main .mainHeading {
    width: 100%;
    height: min-content;
    max-width: 800px;
    padding: 0 24px;
    font-size: 24px;
    color: black;
    opacity: 0.5;
    font-family: beaufort-pro;
    font-weight: 900;
    line-height: 24px;
}


/* LIGHT MODE DARK MODE TOGGLING
@media (prefers-color-scheme: light) {

    .main .mainBg {
        background: var(--nimbrewWhite);
    }
}

@media (prefers-color-scheme: dark) {

    .main .mainBg {
        background: var(--nimbrewBlack);
    }
}
*/