@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 {
    background-color: #F0DAD2;
    color: #A07B6A;
    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;
}

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

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.questions {
    text-align: center;
}

.question {
    margin-bottom: 20px;
}

.questionD {
    font-weight: bold;
}

.questionR {
    margin-top: 5px;
    margin-bottom: 10px;
}

input[type="text"],
select {
    width: calc(100% - 10px); /* 10px is the total padding */
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #A07B6A;
    box-sizing: border-box;
}

textarea {
    width: calc(100% - 10px); /* 10px is the total padding */
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #A07B6A;
    resize: vertical;
    box-sizing: border-box;
}

.buttonRSVP {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #A07B6A;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttonRSVP:hover {
    background-color: #895F4A;
}

@media screen and (max-width: 600px) {
    .content {
        padding: 10px;
    }
}

.required {
    color: red;
}

.separate {
    border-bottom: double;
    margin-top: 20px;
    margin-bottom: 20px;
}

a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
}

ul{
    text-align: center;
    display: inline-block;
    margin:  auto;
}

li {
    text-align: left;
}

