/* Container */
.choice-container {
    text-align: center;
    margin-top: 120px;
    color: white;
}

/* Titel */
.choice-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Knoppen container */
.choice-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Keuzeknoppen */
.choice-btn {
    width: 260px;
    height: 160px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: 0.25s;
}

/* Hover */
.choice-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-6px);
}

/* Iconen */
.choice-btn i {
    font-size: 42px;
    color: #7EC8FF;
}
