@import url('https://fonts.googleapis.com/css2?family=Atma&family=Roboto&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    min-height: 100vh;
    background: url(images/background.jpg);
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
}

h1, h2, h3 {
    font-family: "Atma", system-ui;
}

h1 {
    font-size: 30px;;
}

h2 {
    font-size: 25px;;
}

h3 {
    font-size: 20px;;
}

a {
    color: #f49819;
}

audio {
    width: 230px;
}

audio::-webkit-media-controls-mute-button {
    display: none !important;
}

audio::-webkit-media-controls-volume-slider {
    display: none !important;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    display: none;
}

audio::-webkit-media-controls-play-button {
    transform: scale(2, 2);
    margin-left:  20px;
}

.margintop {
    margin-top:-60px;
}

.persosong {
    float:left; 
    width: 60%; 
    margin:20px;
    text-align: center;
}

.mainimg{
    margin: 20px;
}

.persosongdiv {
    text-align:left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
}

.toplink {
    margin-left: 30px;
    color: #ffffff;
}

.button {
    background: #f49819;
    border-radius: 10px;
    width: 220px;
    height: 50px;
    padding: 10px;
    margin-top: 5px;
    font-size: 20px;    
    margin-bottom: 10px;
    border: 0px solid;
    color: #ffffff;
    cursor: pointer;
}

.bodycontainer {
    background-color: #fff7eb;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    width: 90%;
    max-width: 1025px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.border {
    border: 1px solid #f0e6d7;
}

.orange {
    background-color: #f49819;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    background-color: #fff7eb;
    text-align: center;
    padding-top: 20px;
}

.wave {
    height: 200px;
    background: url(images/wave.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.nav {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px;
    width: 80%;
    max-width: 1025px;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.imglied{
    width: 60%;
    margin-left: -125px;
}

.logocontainer {
    float: left;
}

.songtype{
    font-size: 30px;
}

.logo {
    max-height: 65px;
    margin-left: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.item {
    flex: 1 1 20%; /* Vier items naast elkaar */
    text-align: center;

    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.item img {
    width: 235px;
    height: auto;
    border-radius: 8px;
}

.item p {
    margin-top: 8px;
    font-size: 1rem;
    color: #000;
}

.vlag {
    height: 250px;
    margin-top: -185px;
    background: url(images/usp.png) ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}


.smallfont{
    font-size: 12px;
}

.socialspan {
    vertical-align: middle;
    height: 40px;
    display: inline-block;
    font-size: 15px;
    margin-left: 5px;
}

.laurel {
    max-width: 300px;
    width: 80%;
    margin-top: 10px;
    margin-bottom: 30px;
}




/* Responsive gedrag */

@media (max-width: 970px) {

    .margintop {
        margin-top: -20px !important;
    }

    .persosong{
        margin: 0px;
        float:none; 
        width: 100%;
        text-align: center;
    }
    
    .persosongdiv {
        text-align:center;
    }

    .mainimg{
        text-align: center;
    }
    
    img.logo {
        width: 70px;
        margin-right: 100px;
        margin-left: 10px;
    }
}


@media (max-width: 768px) {
    .item {
        flex: 1 1 45%; /* Twee items naast elkaar */
    }

    .main {
        margin: 10px;
    }

    .vlag {
        height: 125px;
    }
}

@media (max-width: 480px) {
    .item {
        flex: 1 1 100%; /* Eén item per rij */
    }

    .main {
        margin: 0px;
    }

}