@font-face {
    font-family: 'Mafia'; /* Kies een naam voor het font */
    src: url('..//fonts/Carnevalee\ Freakshow.ttf') format('truetype'); /* Pad naar je fontbestand */
    font-weight: normal; /* Optioneel */
    font-style: normal; /* Optioneel */
}

@font-face {
    font-family: 'HoofdTitel'; /* Kies een naam voor het font */
    src: url('..//fonts/akaPosse.ttf') format('truetype'); /* Pad naar je fontbestand */
    font-weight: normal; /* Optioneel */
    font-style: normal; /* Optioneel */
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.left-image {
    position: fixed; /* Zorgt ervoor dat de afbeelding altijd op dezelfde plek blijft */
    top: 0; /* Zet de afbeelding bovenaan */
    left: 0; /* Zet de afbeelding aan de linkerkant */
    width: 120px; /* Breedte van de afbeelding */
    height: auto; /* Houdt de aspect ratio intact */
    
 
}



/* Achtergrond Afbeelding */
.background {
    background-image: url('..//fotos/Mafia_video_game_art_video_game_characters_Vito_Scaletta_Mafia_II_Mafia_2_mafia_trilogy_2K_Games-1868075.jpg!d'); /* Pad naar je afbeelding */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: space-between; 
    color: white; 

}

/* Grote Titel */
.header {
    font-family: 'HoofdTitel', sans-serif;
    margin-top: 20px;
    text-align: center;
    
}

.header h1 {
    font-size: 60px; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px; 
    text-shadow: #a90c0c 2px 2px 5px; 
}

/* Knoppen en andere inhoud moeten boven de afbeelding staan */
.buttons {
    z-index: 2x; /* Zorgt ervoor dat de knoppen boven de afbeelding komen */
    position: relative; /* Nodig om te zorgen dat z-index werkt */
    margin-top: 50px; /* Optioneel, om ruimte boven de knoppen te creëren */
}


.content {
    text-align: center;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
    flex-grow: 1; 
}

/* Kleine Titel */

.content h2 {
    font-family: 'Mafia', sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    text-shadow: #a90c0c 2px 2px 5px; 
}


.start-button {
    background-color: #a90c0c; 
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 22px;
    font-family: 'Mafia', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    
}


.start-button:hover {
    background-color: #000000; 
}

