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

nav {
    position: fixed;
    top: 0;
    height: 70px;
    width: 100vw;
    background-color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 3;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav a {
    text-decoration: none;
}

nav h1 {
    color: white;
    font-size: clamp(0.25rem, -0.3125rem + 9vw, 0.8125rem);
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

footer {
    position: relative;
    top: 100vh;
    padding: 140px 0;
    width: 100%;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(251, 251, 251, 0.1);
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(6.5%, rgba(0, 0, 0, 1)),
            color-stop(65%, rgba(0, 0, 0, 0.7)),
            color-stop(89%, rgba(0, 0, 0, 0.05)),
            to(rgba(0, 0, 0, 0.01)));
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 1) 6.5%,
            rgba(0, 0, 0, 0.7) 65%,
            rgba(0, 0, 0, 0.05) 89%,
            rgba(0, 0, 0, 0.01) 100%);
    z-index: 2;
}

footer .footerBg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 5px;
    text-align: center;
    gap: 20px;
}

footer .footerBg p,
footer .footerBg ul li {
    color: white;
    font-weight: 400;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

footer .footerBg ul {
    text-align: left;
}

#videoBg {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.copyright {
    position: absolute;
    color: white;
    bottom: 0;
    padding: 10px;
}

.copyright p,
.copyright h3 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3333733333;
    color: #ffffff5c;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.copyright p {
    color: rgba(198, 198, 198, 0.838);
    font-weight: bold;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.aleoFont {
    font-family: "Aleo", serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 1px;
}

@font-face{
    font-family: calibri;
    src: url(assets/calibri.ttf);
}

.calibriFont {
    font-family: calibri;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 0.5px;
    font-weight: normal;
}

#logo {
    width: 100%;
    max-width: 380px;
    margin-top: 8px;
    height: 20px;
    padding: 0 10px;
}

@media screen and (min-width: 480px) {
    nav h1 {
        color: white;
        font-size: 1em;
        font-weight: 400;
    }

    nav {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        height: 65px;
        padding: 0 10px;
    }

    #logo {
        width: 100%;
        max-width: 360px;
        margin-top: 8px;
        height: 18px;
        padding: 0 15px;
    }

    footer .footerBg p,
    footer .footerBg ul li {
        color: white;
        font-size: 22px;
        font-weight: 400;
    }
}

footer .footerBg a {
    text-decoration: none;
    color: #6CBAF9;
    font-weight: bold;
}

.down-arrow {
    position: fixed;
    top: calc(100vh - 90px);
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: jumpInfinite 1.5s infinite;
    animation: jumpInfinite 1.5s infinite;
    z-index: 1;
}

.down-arrow:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-bottom: 4px solid rgba(0, 0, 0, 0.823);
    border-right: 4px solid rgba(0, 0, 0, 0.823);
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

@-webkit-keyframes jumpInfinite {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 20px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes jumpInfinite {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 20px;
    }

    100% {
        margin-top: 0;
    }
}

body::-webkit-scrollbar {
    display: none;
}