body {
    font-family: Arial, sans-serif;
    background-image: url(../img/galaxy.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

h1 {
    text-align: center;
    color: rgb(255, 255, 255);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
    color: black;
}

/* Stijlen voor individuele staffleden */
.staff-member {
    background-image: url(../img/space.jpg);
    background-size: cover;
    background-attachment: fixed;
    border: 1px solid #ffffff;
    border-radius: 5px;
    text-align: center;
    padding: 8px;
    transition: transform 0.3s;
    height: 150px;
}

h5{
    color: white;
}

p{
    color: white;
}

/* Hover effect voor staffleden */
.staff-member:hover {
    transform: scale(1.05);
}

/* Stijlen voor de avatar afbeelding */
.staff-member img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Responsieve stijlen voor mobiele weergave */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }
}