@font-face {
    font-family: 'MMRecht';
    src: url('mmrecht.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'MMSchuin';
    src: url('mmschuin.ttf') format('truetype');
  }

body {
    font-family: MMRecht;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    margin-top: 50px;
}

.department-container {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.department {
    width: 20%;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container, .department {
    animation: fadeIn 0.5s ease-out;
}



.department h2 {
    font-size: 30px;
    color: #333;
}

.department-score {
    font-size: 150px;
    margin-top: 20px;
}

h1 {
    font-size: 60px;
    color: #333;
}

#nps-score {
    font-size: 500px;
    font-weight: bold;
    margin-top: -150px;
}

@keyframes changeColor {
    from {
        color: #007bff;
    }
    to {
        color: #ff5722;
    }
}

@keyframes slideFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideFromBottom {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Bestaande CSS-regels */

/* Nieuwe regels voor maandelijkse NPS-scores */
.monthly-nps-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center; /* Centreert de items in de container */
    flex-wrap: nowrap; /* Zorgt ervoor dat alle items op één regel blijven */
    margin-top: 30px;
}


#monthly-nps-scores {
    display: grid;
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    justify-items: center;
}

.monthly-score-item {
    margin: 0 10px; /* Voegt wat ruimte toe tussen de items */
    text-align: center; /* Centreert de tekst */
    font-size: 80px; /* Grootte van de tekst */
}

.second-column {
    padding-left: 5%; /* Zorgt voor een gat tussen de kolommen */
}

/* Voeg eventueel media queries toe voor responsiviteit */
@media (max-width: 768px) {
    #monthly-nps-scores {
        grid-template-columns: 1fr; /* Stap over op één kolom voor mobiele apparaten */
    }
}
