*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: ghostwhite;
    color: white;
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-shadow: 0px 0px 2px black;
}

footer{
    color: black;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

h3{
    color: white;
    text-shadow: 0px 0px 1px beige;
}
footer a{
    color: white;
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.flex-item {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 55%;

    background-color: black;
    color: white;
    border: 6px black inset;
    border-radius: 5px;

    padding: 20px;
    margin: 0;
}

.item1{
    background-color: black;
}

.item2{
    background-color: black;
}

.item3{
    background-color: black;
}

.item4{
    background-color: black;
}

.item5{
    background-color: black;
}   

.mazen {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woonplaats {
    display: flex;
    gap: 10px;
}

.face{
    max-width: 120px;
    height: auto;
}

.waterlandplein{
    max-width: 180px;
    max-height: 220px;
    height: auto;
}

.computer{
    max-width: 180px;
    max-height: 220px;
    height: auto;
}

.vrijetijd{
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen AND (max-width: 600px) and (orientation: portrait){
    .flex-item{
        flex-basis: 100%;
    }

    .mazen{
        flex-wrap: wrap;
    }

    .woonplaats{
        flex-wrap: wrap;
    }

    .waterlandplein{
        flex-wrap: wrap;
    }

    .vrijetijd{
        flex-wrap: wrap;
    }

}