/* Home.css */
/* Opmaak voor achtergrondintellingen, video en hoofdinhoud */

html, body {
    margin: 0;
    padding: 0;
}

/* Achtergrondinstellingen voor de indexpagina */
body {
    background-image: url(../images/HomeBoxmeer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

/* Stijl voor hoofdinhoud */
main {
    font-family: cursive;
    text-align: center;
    max-width: 700px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.75);
    color: #000000;
}

/* Video.css
   Stijlen voor de YouTube-video op de hoofdpagina
*/
#video-container {
    text-align: center;
    margin-top: 20px;
}

#yt-player {
    width: 444px;
    height: 250px;
    max-width: 90%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
