body {
    background-color: rgb(32, 32, 32);
    color: rgb(255, 255, 255);
}

main {
    text-align: center;
}

#graphs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.graph {
    background-color: #333;
    margin-bottom: 5%;
    border-radius: 5px;
    padding: 2%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Schaduw van het vak */
    text-decoration: none;
    color: rgb(255, 255, 255)
}