/*
Theme Name: Fullscreen Grid Theme 1
Theme URI: http://example.com
Author: Jouw Naam
Author URI: http://example.com
Description: Een fullscreen grid thema met achtergrondafbeelding en scroll-functie.
Version: 1.0
*/

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.grid-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 100vw);
    grid-template-rows: repeat(5, 100vh);
    width: 500vw;
    height: 500vh;
    background-image: url('https://plaagdierenbeheersing.wigboutvisuals.nl/wp-content/uploads/2024/10/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grid-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border: 0px solid black;
    text-align: center;
}

#center {
    background-color: rgba(0, 0, 255, 0.8);
    color: white;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: blue;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: darkblue;
}
