@font-face {
    font-family: 'Arial Lovelyn Migra';
    src: url('../font/Migra-Extralight.ttf') format('truetype'); /* Assicurati di sostituire il percorso corretto */
    font-weight: normal;
    font-style: normal;
}
body, html {
    font-family: 'Arial Lovelyn Migra', Arial, sans-serif; /* Fallback per Arial nel caso in cui il font non venga caricato correttamente */
    margin: 0;
    padding: 0;
    height: 100%;
}

.background-image {
    background-image: url('../img/back.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: 57% 10%;
 
}
h2{
    text-shadow: 2px 2px #F0DAD2;
}
.content {
    text-align: center;
    color: #A07B6A;
}

.buttons {
    margin-top: 20px;
}

.button {
    margin: auto;
    display: block;
    width: 200px; /* Larghezza dei pulsanti */
    padding: 10px 20px;
    background-color: #F0DAD2;
    color: #A07B6A;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px; /* Spazio tra i pulsanti */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    opacity: 0.8;
}

/* Stile per l'iframe */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Rapporto d'aspetto 16:9 */
    height: 0;
    margin-bottom: 20px; /* Spazio inferiore tra la mappa e il contenuto successivo */
    margin-top: 20px; /* Aggiunta spazio sopra la mappa */
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Rimuove il bordo dell'iframe */
    border-radius: 10px; /* Aggiunta di bordi arrotondati alla mappa */
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #F0DAD2;
    border: 1px solid #A07B6A;
    box-shadow: 0 0 10px #A07B6A(0, 0, 0, 0.5);
    z-index: 9999;
}