@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%;
    font-size: 24px;
    text-shadow: 2px 2px #F0DAD2; /* Sfondo del testo */
}

.questions{
    background-color: #F0DAD2;
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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%;
 
}
a{
    text-decoration: none;
    color: #A07B6A;
}
.content {
    text-align: center;
    color: #A07B6A;
}

.buttons {
    margin-top: 20px;
}


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

.required {
            color: red;
}
textarea {
            opacity: 0.8;
}


.button:hover {
    opacity: 0.8;
}

