*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.top{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
    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: center;
    justify-content: space-between;
}


nav ul li:hover{
    transform:scale(1.05, 1.05);
    transition: 0.3s;
    background-image: linear-gradient(rgb(255, 255, 255),rgba(218, 197, 10, 0.671),rgb(177, 89, 31),rgb(151, 97, 15));
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    padding: 2px;
}

nav .logo{
    width: 80px;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;

}
nav ul li a{
    text-decoration: none;
    color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 25px;
}

.content{
    text-align: center;
}
.content h1{
    font-size: 160px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
}
.content h1:hover{
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}
.content h2{
    color: #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}

.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24p-;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}

.back-video{
    position: absolute;
    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%;
    }
}

/* PHONE STYLE */

@media (min-width: 1440px) and (max-width: 1440px){

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body{
        background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
    }
    .top{
        width: 100%;
        height: 100vh;
        position: relative;
        padding: 0;;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav ul li:hover{
        visibility: collapse;
    }
    nav .logo{
        width: 150px;
    }
    nav ul li{
        visibility: collapse;

    }
    nav ul li a{
        visibility: collapse;
    }

    .off-screen-menu{
        background-color: rgb(34, 37, 49);
        height: 100vh;
        width: 100%;
        max-width: 450px;
        position: fixed;
        top: 0;
        right: -450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 3rem;
        transition: .3s ease;
        text-decoration: none;
    }
    .off-screen-menu.active{
        right: 0;
    }
    .ham-menu{
        height: 100px;
        width: 100px;
        margin-left: auto;
        position: relative;

        
    }
    .ham-menu span{
        height: 5px;
        width: 100%;
        background-color: #fff;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
        
    }

    .ham-menu span:nth-child(1){
        top: 25%;
        
    }
    .ham-menu span:nth-child(3){
        top: 75%;
    }
    .ham-menu.active span:nth-child(1){
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .ham-menu.active span:nth-child(2){
        opacity: 0;
    }
    .ham-menu.active span:nth-child(3){
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        
    }

    .content{
        text-align: center;
    }
    .content h1{
        font-size: 260px;
        color: #fff;
        font-weight: 600;
        transition: 0.5s;
    }
    .content h1:hover{
        -webkit-text-stroke: 2px #fff;
        color: transparent;
    }
    .content h2{
        color: #fff;
        padding: 14px 70px;
        border-radius: 50px;
        margin-top: 20px;
        font-size: 60px;
    }
    
    .content a{
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-size: 24p-;
        border: 2px solid #fff;
        padding: 14px 70px;
        border-radius: 50px;
        margin-top: 20px;
        font-size: 80px;
    }



    /* FOOTER */
    footer{
        position: fixed;
        bottom: 0;
        left:0; 
        width:100%;
    }



    @media (min-aspect-ratio: 19.5/9){
        .back-video{
            width: 100%;
            height: auto;
        }
    }
    @media (max-aspect-ratio: 19.5/9){
        .back-video{
            width: auto;
            height: 100%;
        }
    }
}


/* TABLET STYLE */
@media (min-width: 1024px) and (max-width: 1024px){

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body{
        background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
    }
    .top{
        width: 100%;
        height: 100vh;
        position: relative;
        padding: 0;;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav ul li:hover{
        visibility: collapse;
    }
    nav .logo{
        width: 150px;
    }
    nav ul li{
        visibility: collapse;

    }
    nav ul li a{
        visibility: collapse;
    }

    .off-screen-menu{
        background-color: rgb(34, 37, 49);
        height: 100vh;
        width: 100%;
        max-width: 450px;
        position: fixed;
        top: 0;
        right: -450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 3rem;
        transition: .3s ease;
        text-decoration: none;
    }
    .off-screen-menu.active{
        right: 0;
    }
    .ham-menu{
        height: 100px;
        width: 100px;
        margin-left: auto;
        position: relative;

    }
    .ham-menu span{
        height: 5px;
        width: 100%;
        background-color: #fff;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
        
    }

    .ham-menu span:nth-child(1){
        top: 25%;
        
    }
    .ham-menu span:nth-child(3){
        top: 75%;
    }
    .ham-menu.active span:nth-child(1){
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .ham-menu.active span:nth-child(2){
        opacity: 0;
    }
    .ham-menu.active span:nth-child(3){
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        
    }

    .content{
        text-align: center;
    }
    .content h1{
        font-size: 150px;
        color: #fff;
        font-weight: 600;
        transition: 0.5s;
    }
    .content h1:hover{
        -webkit-text-stroke: 2px #fff;
        color: transparent;
    }
    .content h2{
        color: #fff;
        padding: 14px 70px;
        border-radius: 50px;
        margin-top: 20px;
        font-size: 40px;
    }
    
    .content a{
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-size: 24p-;
        border: 2px solid #fff;
        padding: 14px 70px;
        border-radius: 50px;
        margin-top: 20px;
        font-size: 60px;
    }



    /* FOOTER */
    footer{
        position: fixed;
        bottom: 0;
        left:0; 
        width:100%;
    }



    @media (min-aspect-ratio: 1024/1366){
        .back-video{
            width: 100%;
            height: auto;
        }
    }
    @media (max-aspect-ratio: 1024/1366){
        .back-video{
            width: auto;
            height: 100%;
        }
    }
}










@media (min-width: 1441px) and (max-width: 1920px){
    .off-screen-menu{
        visibility: collapse;
    }

}