*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: 1em sans-serif;
}
.hero{
    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 .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: #efe8e8;
    font-size: 17px;
}
.content{
text-align: center;

}

.content h1{
    font-size: 40px;
    color: #f4f4f7;
    font-weight: 600;
    transition: 0.5s;
}
 

.content h1:hover{
    -webkit-text-stroke: 2px #e3e3ec;
    color: transparent;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #f5f0f5;
    font-size: 24px;
    border: 2px solid #e5dfe8;
    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;
        
    }
    .content h1{
        width: 100%;
        height: 100%;
        font-size: 40px;
    color: #ededf5;
    font-weight: 600;
    transition: 0.5s;
     
        }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: 100%;
    }
    .content h1{
        width: 100%;
        height: 100%;
        font-size: 40px;
    color: #0d0e0d3f;
    font-weight: 600;
    transition: 0.5s;
    width: 100%;
    height: 100%;
     
        }
        .content h1{
            font-size: 15px;
            color: #141414;
            font-weight: 600;
            transition: 0.5s;
            width: 100%;
            height: 100%;
        }
        .content h2{
            font-size: 10px;
            color: #141414;
            font-weight: 600;
            transition: 0.5s;
            width: 100%;
            height: 100%;
        }
       
      
}
 