*{
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}
.header{ 
    height: 100vh;
    width: 100%;
    padding: 0 8%; 
    position: relative;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.logo{
    width: 140px;
    align-items: left;
}
.nav-links{
    padding:  28px 0;
}
.nav-links li{
    display: inline-block;
    margin: 0 15px;
}
.nav-links li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    position: relative;
}
.nav-links li a::after{
    content: '';
    background: #ff3d00;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}
.nav-links li a:hover::after{
    width: 100%;

}
.button{
    background: #ff3d00;
    color: #fff;
    padding: 10px 30px;
    border-radius: 3px;
    cursor: pointer;
}

.content{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    max-width: 900px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(206, 187, 14);
}
.content h1{
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 40px;
}
.content form{
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
}
.content form input{
    flex: 1;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 18px;
}
.content form button{
    background: #ff3d00;
    color:#fff;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;

}
.category-list{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.category{
    width: 350px;
    height: 200px;
    background: rgba(250, 216, 104, 0.945);
    margin: 0 10px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.category img{
    width: 250px;
    margin-bottom: 10px;
    cursor: pointer;
    
}
.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    
}
@media(min-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}
