* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: rgb(229, 153, 255);
    --fade: rgba(229, 153, 255, 0.6);
    --ui: #ffffff;
    --uifade: #888888;
    --link: rgb(255, 255, 255);
    --hover: #ab02ff;
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --credits: #ededed;
    --credits-sub: rgba(255, 255, 255, 0.5);

    --logo: url('./assets/kawaiigwenwhite.svg');

}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: rgb(0, 0, 0);
        --fade: rgba(0, 0, 0, 0.6);
        --ui: #e599ff;
        --uifade: #888888;
        --link: rgb(255, 255, 255);
        --hover: #ab02ff;
        --bg-color: #1a1a1a;
        --text-color: #e599ff;
        --accent-color: #ffffff;
        --credits: #ededed;
        --credits-sub: rgba(255, 255, 255, 0.5);


        --logo: url('./assets/kawaiigwenwhite.svg');
    }
}






body {
    background: var(--bg);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}



img {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Athemi';
    src: url('./fonts/athemi_otf-webfont.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aesthetic';
    src: url('./fonts/Aesthetic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Remington';
    src: url('./fonts/Remington Noiseless.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


h1 {
    color: var(--text-color);
    font-size: 14vw;
    text-align: center;
    font-weight: normal;
    margin: 0;
    font-family: 'Athemi', serif;
    pointer-events: none;
}

h3 {
    color: var(--text-color);
    font-size: 12vw;
    text-align: center;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    font-family: 'Remington', serif;
}

.headline {
    position: relative;
    margin: 5vh auto 0 auto;
    color: var(--text-color);
    width: 60%;
    max-width: 100%;
    height: auto;
    left: auto;
    top: auto;
    will-change: transform;
}


.content {
    position: relative;
    margin: 5vh auto 100px auto;

    width: 60%;
    max-width: 1200px;
    height: auto;
    left: auto;
    top: auto;
}

.content h1,
.content h3,
.content p,
.content h2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    font-family: 'Remington', serif;
    text-align: center;
    line-height: 1.6;
}

.content h2 {
    font-size: 4rem;
    margin-top: 4rem;
    margin-bottom: 0.8rem;
    font-family: 'Remington', serif;
    font-weight: bold;
    color: #fff;
}

.content p {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #ffffff;
}

.content .info {
    display: block;
    font-family: 'Helvetica Neue', serif;
    font-weight: normal;
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.content h2 + p + .info-note {
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.content .info:last-child {
    margin-top: 3rem;
    margin-bottom: 0;
}

.email-link {
    color: inherit;
    text-decoration: none;
    padding-bottom: 12px;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: left 95%;
    transition:
            color 0.6s ease-in-out,
            background-size 0.6s ease-in-out;
}

.email-link:hover {
    color: var(--hover, #555555);
    background-size: 0 2px;
    background-position: right 95%;
}



@media (min-width: 901px) {
    .headline {
        margin: 25vh auto 0 auto;
        width: 60%;
    }

    .content {
        margin: 5vh auto 10vh auto;
        width: 60%;
    }

    .content h1,
    .content h2,
    .content p {
        width: 100%;
    }
}


@media (max-width: 900px) {

    .headline {
        position: relative;
        top: 4vh;
        left: auto;
        width: 90%;
        height: auto;
        margin: 10vh auto 0 auto;
        padding-top: 0;
        max-width: 100%;
    }

    .headline h1 {
        font-size: clamp(6rem, 18vw, 10rem);
        margin-bottom: 6rem;
    }

    .headline h3 {
        font-size: clamp(5rem, 16vw, 9rem);
        margin-bottom: 6rem;
    }

    .content {
        position: relative;
        top: auto;
        left: auto;
        width: 90%;
        height: auto;
        margin-top: 5vh;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10vh;
        max-width: 100%;
    }

    .content h2,
    .content p {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        font-size: 1.4rem;
    }

    .content h2 {
        font-size: 1.8rem;
        margin-top: 3rem;
        margin-bottom: 0.8rem;
    }

    .content p {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .content .info {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .content h2 + p + .info {
        margin-top: -1.5rem;
        margin-bottom: 2rem;
    }
}
