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

html,
body {
    width: 100%;
    height: 100%;
    min-height: 400vh;
    background: #0f0f0f;
    font-family: "Funnel Display", sans-serif;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header {
    top: 0;
    position: fixed;
    margin-top: 2em;
    padding: 2em;
    width: 100%;
    display: flex;
    color: #fff;
    z-index: 2;
}

.header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #0f0f0f;
    z-index: 2;
}

.header>div {
    flex: 1;
    text-align: center;
}

.header .letter h1 {
    display: block;
    font-size: 13vw;
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    color: #FBF5F3;
}

.nav {
    top: 0;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em 0;
    z-index: 1;
}

.logo {
    position: relative;
}

.logo a {
    position: relative;
    top: 20px;
    color: #fff;
    text-decoration: none;
    font-family: 'Audiowide', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
}

.logo-revealer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transform-origin: bottom;
}

.logo-revealer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    background: #0f0f0f;
    z-index: 2;
}

.website-content {
    width: 100%;
    top: 0;
    padding-top: 500px;
    z-index: 0;
}

.website-content-wrapper {
    width: 70%;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #EF3E36;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.125;
    letter-spacing: -0.012em;
}

.img {
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
    border-radius: 40px;
}

p {
    color: #666A86;
    font-size: 20px;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .header {
        display: flex;
        justify-content: center;

    }

    .website-content {
        padding-top: 180px;
    }


    /* .website-content {
        position: relative !important;
        padding-top: 150px;
    }

    .nav {
        padding: 1.5em 0;
    }

    .logo a {
        top: 0 !important;
    }

    .logo-revealer {
        display: none;
    } */
}