html, body {
    margin: 0;
    padding: 0;
    font-family: 'Pacifico', cursive;
    background-color: #F5E8D0; 
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #004C70; 
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1; 
    padding: 10px 0;
}

.logo img {
    width: 200px;
    margin: 10px;

}

nav ul li {
    display: inline;
    margin-right: 50px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    color: #F5E8D0;
}

nav ul li a:hover {
    color: #00A4CC; 
}

.flag {
    width: 30px;
    height: auto;
    cursor: pointer;
    margin-left: 10px;
}

.accueil {
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 80px 0; 
}

.accueil video { 
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.titre {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 76, 112, 0.5); 
    color: #F5E8D0;
}

.titre h1 {
    font-size: 6em;
    font-weight: bold;
}

.section {
    display: flex;
    align-items: center;
    margin: 60px;
}

.contenu {
    padding: 50px;
    font-size: 22px;
    width: 800px;
}


.image img {
    width: 550px;
    border-radius: 10px;
}

h2 {
    color: #004C70;
    text-align: center;
    margin: 20px;
    font-size: 2.5em;
}

#about {
    padding: 30px;
    border: 5px solid #004C70;
    border-radius: 15px;
    margin: 10px;

}

#contact {
    padding: 30px;
    border: 5px solid #004C70;
    border-radius: 15px;
    margin: 10px;
    font-size: 20px;

}

#contact table {
    margin: 20px;
    width: 100%;
}
 
#contact td {
    border: 1px solid #004C70;
    text-align: center;
    padding: 10px;
    background-color: #F0F8FF;
}
#contact a{
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    color: #004C70;
}

#contact a:hover {
    color: #00A4CC; 
}

.map {
    margin: 20px;
    text-align: center;
}

footer {
    background-color: #004C70;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
