/* Algemene styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #007BFF; /* Blauwe achtergrondkleur */
    font-family: Arial, sans-serif;
}

/* Styling voor de links */
a {
    text-decoration: none;
    color: white;
    background-color: #ff00e6; /* Zelfde kleur als de achtergrond */
    padding: 50px; /* Ruimte rond de tekst */
    border-radius: 50%; /* Zorgt voor cirkels */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    width: 150px; /* Voor consistente cirkelvorm */
    height: 150px; /* Voor consistente cirkelvorm */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px;
}

/* Effect bij hover */
a:hover {
    transform: scale(1.2); /* Vergroot de cirkel */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
