@font-face {
    font-family: "alore";
    src: url("../assets/alore.otf");
}


body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;

}

.video-container {
    position: relative;
    width: 100vw;
    height: 97vh;
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.197);
    pointer-events: none;
}

/* Continue com o restante do seu CSS normalmente */


nav {
    width: 100%;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.297);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    padding-bottom: 13px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s, background-color 0.3s;
    pointer-events: none;
}

nav.sticky-nav {
    background-color: rgba(31, 0, 103, 1);
    opacity: 1;
    pointer-events: auto;
}

nav>img {
    max-width: 90%;
    max-height: 100%;
    height: auto;
    width: auto;
    filter: brightness(111);
}

.c1 {
    background-color: #080043;
    width: 100vw;
    color: white;
    font-family: 'alore', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.c1>h1 {
    margin: 0;
    color: white;
    font-family: 'alore', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    padding: 50px 20px;
    text-align: left;
    text-align: left;
}

@media screen and (max-width: 450px) {
    .c1>h1 {
        font-size: 1.6rem;
        padding: 10px 5px 10px 5px;
    }
}

.parallax {
    width: 100vw;
    height: 70vh;
    background-image: url('../assets/bgParalax.jpg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 4;
}

.c2 {
    background-color: rgba(7, 0, 38, 0.507);
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(21px);
    backdrop-filter: blur(12px);
}

.c2>h1 {
    margin: 0;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}
