html{
    scroll-padding: 120px;
}

/* Algemene styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header h1 {
    margin: 0;
}

nav{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content styling */
main {
    padding: 20px;
}

h2 {
    color: #444;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    /* position: fixed; */
    width: 100%;
    bottom: 0; 
}

.verkleinde-afbeelding {
    width: 100px; /* Specificeer de breedte */
    
    }

.movie-container {
    /* outline: auto; */
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-evenly;
}

.movie-card {
    text-align: center;
    background-color: rgb(197, 197, 197);
    border-radius: 12px;
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 60px
}

.movie-card p {
    font-size: 30px;
}

.game-container {
    display: flex;
    gap: 60px;
    justify-content: space-evenly;
}

.game-card {
    min-width: 30%;
    max-width: 30%;
    display: flex;
    text-align: center;
    background-color: rgb(197, 197, 197);
    border-radius: 12px;
}

.game-card h1{
    text-align: center;
}