@font-face {
    font-family: 'Chomsky';
    src: url("Chomsky/chomsky-webfont.woff");
}
@font-face {
    font-family: 'Cloister';
    src: url("Cloister/cloisterblacklight-axjg-webfont.woff");
}
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');

html, body {
    background-color: black;
    --bs-body-bg: black;
  }

.preloader {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

.preloader__text {
    font-family: 'Chomsky';
    font-size: 10em;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.fadeOut {
    animation-name: fadeOutAnimation;
    animation-duration: 2s;
}

@keyframes fadeOutAnimation {
    from { opacity: 1; }
    to { opacity: 0; }
}

.hero {
    background: black;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__header {
    font-size: 3em;
    color: white;
    font-family: 'Chomsky';
    background: black;
}

.hero__content {
    font-size: 1.5em;
    font-family: 'Cloister';
    color: white;
    text-align: center;
}

.second {
    background: black;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.second__header {
    font-family: 'Chomsky';
    font-size: 3em;
    color: white;
}

.second__content {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    width: 20vw;
}

a {
    text-decoration: underline !important;
    color: white !important;
}

.third {
    background: black;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.third__header {
    font-family: 'Chomsky';
    font-size: 3em;
    color: white;
    width: 12.5vw;
}

.third__content {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    width: 20vw;
    color: white;
}

@media screen and (max-width: 768px) {
    .third {
    background: black;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
    .third__header {
        font-family: 'Chomsky';
        font-size: 3em;
        color: white;
        width: 47vw;
    }
    
    .third__content {
        font-family: 'Ubuntu', sans-serif;
        text-align: center;
        color: white;
        width: 60vw;
    }

}
