@font-face {
  font-family: 'CormorantGaramond';
  src: url('/fonts/CormorantGaramond-Regular.ttf') format("truetype");
  /*src: url('/fonts/CormorantGaramond-Regular.woff2') format("woff2"); /* TODO accent ne fonctionnent pas */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CormorantGaramond';
  src: url('/fonts/CormorantGaramond-Bold.ttf') format("truetype");
  /*src: url('/fonts/CormorantGaramond-Bold.woff2') format("woff2"); /* TODO accent ne fonctionnent pas */
  font-weight: bold;
  font-style: bold;
}

* {
    font-family: 'CormorantGaramond', Georgia, "Times New Roman", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 18px;
}

body {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    color: #111;
    background-color: #925849;
}
html.no-webp body {
    background-image: url('/img/background.png'); /* fallback */
}
html.webp body {
    background-image: url('/img/background.webp');
}
#container {
    background-color: #fff;
    padding: 40px;
    border-radius: 25px;
}
#container > img {
    width: 100%;
    margin-bottom: 15px;
}
h1 {
    text-align: center;
    color: #925849;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="number"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea {
    height: 100px;
}
.radio-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.radio-option {
    display: flex;
    align-items: center;
    font-weight: normal;
}
.radio-option input {
    margin-right: 15px;
}
.radio-option label {
    font-weight: normal;
}
button {
    background-color: #925849;
    font-weight: bold;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 50vh;
    width: 100%;
}
button:hover {
    background-color: #6E4237;
}

/* Phones */
@media (max-width: 576px) {
    body {
        padding: 20px;
    }
    .radio-group {
        flex-direction: column;
    }
}