@font-face {
    font-family: "Nimbus Mono PS";
    src: url(font/nimbusmono-bold.otf) format('opentype');
}

* {
    margin: 0; /* Supprime toutes les marges */
    padding: 0; /* Supprime tous les espacements internes */
    box-sizing: border-box; /* Gère les dimensions des bordures correctement */
}

html, body{
    background-color: black;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Nimbus Mono PS", monospace;
    color: rgb(255, 249, 238);
}

h1 {
    margin-top: 2%;
}

.header {
    color: rgb(198, 198, 198);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    width: 3%;
    height: auto;
    margin-right: 1%;
    margin-top: 2%;
}

.custom-map {
    width: 90%; /* 90% de la largeur de l'écran */
    max-width: 800px; /* Largeur maximale */
    height: 500px; /* Hauteur de la carte */
    margin: 20px auto; /* Centrer la carte horizontalement */
    border: 2px solid #333; /* Bordure noire */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.center {
    display: flex;
    justify-content: center;
}

.button1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vh;
}

.btn {
    display: inline-flex;
    align-items: center;
    background-color: #ff0000;
    color: rgb(0, 0, 0);
    text-align: center;
    text-decoration: none;
    border-radius: 2%;
    font-size: 100%;
    transition: background-color 0.3s ease;
    padding: 0.5%;
    justify-content: center;
    margin: 1%;
    margin-bottom: 10vh;
}

.btn2 {
    display: inline-flex;
    align-items: center;
    background-color: #57ba8eff;
    color: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    border-radius: 2%;
    font-size: 100%;
    transition: background-color 0.3s ease;
    padding: 0.5%;
    justify-content: center;
    margin-right: 1%;
}

.btn3 {
    display: inline-flex;
    align-items: center;
    background-color: #ff0000;
    color: rgb(0, 0, 0);
    text-align: center;
    text-decoration: none;
    border-radius: 2%;
    font-size: 100%;
    transition: background-color 0.3s ease;
    padding: 0.5%;
    justify-content: center;
}

.img-button {
    width: 24px;
    height: auto;
    margin-right: 5px;
}

.btn:hover {
    background-color: #8a0000;
}

.btn2:hover {
    background-color: rgb(51, 108, 82);
}

.btn3:hover {
    background-color: #8a0000;
}