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

html, body {
    background-color: black;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Nimbus Mono PS", monospace;
    color: antiquewhite;

}

h1{
    margin-top: 4vh;
}

.header {
    display: flex;
    justify-content: center;
    margin-top: 0;
    font-family: "Nimbus Mono PS", monospace;
}

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

.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;
}

#generateBtn {
    display: block;
    align-items: center;
    background-color: #ff0000;
    color: rgb(0, 0, 0);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    font-size: 100%;
    transition: background-color 0.3s ease, transform 0.2s;
    padding: 0.5%;
    justify-content: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

#generateBtn:hover {
    background-color: #8a0000; /* Bleu plus foncé */
    transform: scale(1.05);
}

#generateBtn:active {
    transform: scale(0.95);
}