body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

@font-face {
    font-family: BebasNeue-Regular;
    src: url(../font/BebasNeue-Regular.ttf);
}
  
h2 {
    font-family: myFirstFont;
    color: darkgreen;
}

.container {
    text-align: center;
}

.centered-image {
    max-width: 100%;
    height: auto;
}

.email {
    font-size: 20px;
    font-family: BebasNeue-Regular;
    font-size: 1.5em;

}

.email a {
    color: #F85713; /* Aanpassing van de tekstkleur naar #F85713 */
}

.email a:hover {
    color: black; /* Tekstkleur bij mouseover (zwart) */
}