body {
    height: 100dvh;
    width: 100dvw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #CECDC3;
    font-size: 100%;
    background-color: black;
}

section {
    height: 100dvh;
    width: 100dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.container {
    height: 100%;
    width: 100%;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

.content {
    flex-direction: column;
    width: min(75%, 50rem);
    /* border: 5px solid pink; */
    padding: max(2.5vh, 2.5rem) 2.5rem;
}

#intro {
    background-image: url(/images/earth.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto clamp(100%, 50%, 50%);
}

#intro .content {
    position: relative;
    height: 80%;
}

.content .title {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 40px;
}

.content .headline {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    font-size: clamp(1rem, 5vw + 0.1rem, 4rem);
    padding-right: 40px;
}

.content header {
    font-size: clamp(0.85rem, 5vw + 0.1rem, 4rem);
    letter-spacing: 0.2em;
    margin: 0;
    text-shadow: 0.5em 0.5em rgba(206, 205, 195, 0.05)
}

.content header h2 {
    margin: 0;
    padding-bottom: min(5rem, max(0.8rem, 4vw));
}

.content p {
    text-align: center;
    font-size: clamp(0.8rem, 1.5vh + 0.2rem, 1.25rem);
    letter-spacing: 0.05em;
}

.content .first {
    margin-bottom: min(5rem, max(0.8rem, 4vw));
}

.content .tagline {
    text-align: right;
    margin-top: max(1.5vh, 1.5rem);
    font-size: clamp(1rem, 5vw + 0.1rem, 4rem);
    font-weight: bold;
    margin: 0;
    padding-top: min(5rem, max(0.8rem, 4vw));
    letter-spacing: 0.1em;
}

#contact {
    background-image: url(/images/metropolis.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position-y: -10%;
}

#contact .content {
    height: 80%;
}

#contact .content header h2 {
    text-align: center;
    text-shadow: 0em 0.5em rgba(206, 205, 195, 0.05)
}