/*Variabelen voor kleur*/
:root{
    --background: #333333;
    --txt_color: #fff;
    --alt_color: #ff3d00;
}
/*Opmaak site*/
*{
    padding: 0%;
    margin: 0;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}
* body{
    background-color: var(--background);
    color: var(--txt_color);
}
/*CSS for Header Homepage*/
.header_main{
    height: 100vh;
    width: 100%;
    padding: 0px 30px;
    position: relative;
}
.header_sec{
    padding: 0 8%;
    position: relative;
}
.header_logo{
    width: 140px;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_links{
    padding: 28px 0;
}
.nav_links li{
    display: inline-block;
    margin: 0 15px;
}
.nav_links li a{
    text-decoration: none;
    color: var(--txt_color);
    padding: 5px 0;
    position: relative;
}
.nav_links li a::after{
    content: '';
    background: var(--alt_color);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}
.nav_links li a:hover::after{
    width: 100%;
}
.header_btn{
    background: var(--alt_color);
    color: var(--txt_color);
    padding: 10px 30px;
    border-radius: 3px;
    cursor: pointer;
}
/*Main pagina*/
.zoekbalk{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    max-width: 900px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--txt_color);
    padding-top: 50px;
}
.zoekbalk h1{
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 40px;
}
.zoekbalk form{
    background: var(--txt_color);
    padding: 10px;
    border-radius: 8px;
    display: flex;
}
.zoekbalk form input{
    flex: 1;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 18px;
}
.zoekbalk form button{
    background: var(--alt_color);
    color: var(--txt_color);
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.achtergrond_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){
    .achtergrond_video{
        width: 100%;
        height: auto;
    }
}
@media(max-aspect-ratio:16/9){
    .achtergrond_video{
        width: auto;
        height: 100%;
    }
}
