/*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: 10vh;
    width: 100%;
    padding: 0px 30px;
    margin-bottom: 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;
}

/*Portfolio*/
.albums{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px;
    gap: 50px;
    max-width: 900px;
    margin: auto;
    a, img{
        max-width: 325px;
    }
}
.albums_box{
    text-decoration: none;
    color: var(--txt_color);
}
/*Port_Jaar1*/
.box_storage{
    display: flex;
    flex-wrap: wrap;
}
.box_content{
    display: flex;
    flex-direction: column;
    width: 46%;
    min-height: 150px;
    padding: 1%;
    margin: auto;
    margin-bottom: 2%;
    outline: solid var(--alt_color);
    border-radius: 5px;
    box-shadow: 0px 1px 5px;
    h2, h3, p{
        padding-bottom: 5px;
    }
    a{
        color: var(--txt_color);
    }
}

.portfolioItems{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 10px;
    flex-wrap: wrap;
    a{
        text-wrap: wrap;
    }
}

.portfolioContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}