@font-face {
    font-family: 'Caviar Dreams';
    src: url('CaviarDreams.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Caviar Dreams', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('fond.jpg') no-repeat center center fixed;
    background-size: cover;
}


.container {
    text-align: center;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.85); /* blanc avec 85% d’opacité */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}


.logo {
    max-width: 300px;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

p {
    color: #333;
    line-height: 1.5;
}

.contact-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: #ebab3f;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e65c00;
    }
    
.important-message {
    color: #d7592f;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
}


