/* Style général de la page */

@font-face {
    font-family: 'Offlander';
    src: url('font/offlander.ttf') format('truetype'); /* Chemin vers le fichier .ttf */
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Offlander', sans-serif; /* Application de la police Offlander */
    color: white;
    text-align: center;
    background-image: url('images/background.jpg'); /* Remplacer par l'URL de votre image de fond */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Conteneur principal */
.container {
    background-color: rgba(0, 0, 0, 0.7); /* Arrière-plan semi-transparent pour améliorer la lisibilité */
    padding: 30px;
    border-radius: 10px;
    width: 80vw;
    max-width: 600px;
}

/* Logo */
.logo img {
    max-width: 80%;
    margin-bottom: 10px;
}

/* Message principal */
.message h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: normal;
}

.message p {
    font-size: 1.6em;
}

/* Informations de contact */
.contact-info h2 {
    margin-top: 30px;
    font-size: 1.9em;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-info p {
    font-size: 1.6em;
    margin: 5px 0;
}
.contact-info p a{
    color: #fc913d;
}
.footer p{
  font-size: 1.0em;
}
.footer h3{
  font-size: 1.4em;
  font-weight: normal;
  margin: 5px 0;
}

/* Bouton Facebook */
.social-media .facebook-button {
    display: inline-flex;
    align-items: center;
    background-color: #3b5998;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.4em;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.social-media .facebook-button img {
    width: 40px;
    margin-right: 10px;
}

.social-media .facebook-button:hover {
    background-color: #2d4373;
}
