* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0px;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
}

.content {
    text-align: center;
}

.content h1 {
    font-size: 100px;
}

.content h2 {
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 8px;
}

.content a {
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    border: 2px solid #FFFFFF;
    padding: 10px 60px;
    border-radius: 50px;
    margin-top: 20px;
    transition: 0.5s;
}

.content a:hover {
    background-color: #FFFFFF;
    color: #1a1a1a;
    animation: pulse 2s infinite;
}

.back-video {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
    .back-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100%;
    }
}


.section-01 {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 1));
    position: relative;
    padding: 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-01-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.section-01-content h2 {
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.section-01-content p {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: justify;
}

aside {
    position: absolute;
    bottom: 20px;
    right: 40px;
}

aside img {
    width: 45px;
}

aside img:hover {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

footer {
    width: 100%;
    height: 20px;
    text-align: center;
    position: absolute;
    bottom: 10px;
}

footer span {
    font-size: 12px;
    font-weight: 400;
}



@media (max-width: 1024px) {
    .content h1 {
        font-size: 76px;
    }
}


@media (max-width: 768px) {


    nav {
        padding: 5px 2%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }
    nav ul li a {
        font-size: 14px;
    
    }

    .content h1 {
        font-size: 36px;
        margin-top: 2em;
    }

    .content h2 {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .content a {
        font-size: 10px;
        border: 1px solid #FFFFFF;
    }


    .section-01 {
        padding: 0 2%;
    }

    .section-01-content h2 {
        font-size: 40px;
    }

    .section-01-content p {
        font-size: 16px;
        line-height: 1.2;
    }

    aside {
        display: none;
    }
}