body {
	margin: 0;
	font-family: 'Montserrat', serif;
    color: white;
    font-size: 16px;
}

.static {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1;
    width: 100%;
    background: url('./../assets/img/Night\ Sky\ Image.jpg');
    background-size: cover;
    background-position: center;
}

.scroll-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    z-index: 2;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-one {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section-two {
    min-height: 80vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-two-background {
    background: url('./../assets/img/Mountains\ Image.jpg');
    background-size: cover;
    background-position: center;
}

.logo {
    user-select: none;
    opacity: 0;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.content {
    margin: 0 15%;
    text-align: center;
    text-shadow: 1px 1px 2px #00000080;

}

.mission {
    padding: 12vh 0 5px 0;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
}

.title {
    font-size: 1.2rem;
    font-weight: 600;
    padding-top: 34px;
    margin-bottom: 0;
}

.link {
    font-size: 1.0rem;
    margin: 12px 0;
    font-weight: 300;
}

.footer {
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 15%;
    scroll-snap-align: end;
}

.disclaimer {
    font-size: 0.75rem;
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.25s;
}

a:hover {
    color: rgb(38, 38, 57);
}


@media only screen and (max-width: 768px) {
    .logo {
        padding-bottom: 35px;
    }

    .section-two {
        display: block;
    }

    .content {
        margin: 0 5%;
    }

    .mission {
        padding-top: 10vh;
        font-size: 1.2rem;
    }

    .title {
        font-size: 1.0rem;
        padding-top: 22px;
    }
    
    .link {
        font-size: 0.9rem;
        margin: 10px 0;
    }

    .footer {
        margin: 0 5%;
        align-items: start;
    }

    .disclaimer {
        font-size: 0.65rem;
        padding-top: 10px;
        padding-bottom: 25px;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}