body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    flex: 1;
}
.logo {
    max-width: 100%;
    height: auto;
    width: 600px;
}
.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.column {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centreert verticaal */
    align-items: center;     /* centreert horizontaal */
    text-align: center;
    flex: 1;
    min-width: 200px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* lichte zwevende schaduw */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* soepele animatie */
}

.column:hover {
    transform: translateY(-5px); /* licht omhoog bij hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* diepere schaduw bij hover */
}


.column img {
    max-width: 200px;
    height: auto;
    cursor: pointer;
}
.description {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}
.footer {
    background-color: #333;
    color: #eee;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}
.footer a {
    color: #eee;
    text-decoration: none;
    cursor: pointer;
}
.footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .logo {
        width: 100%;
    }
    .columns {
        flex-direction: column;
        align-items: center;
    }
    .column {
        max-width: 100%;
    }
}
