/* Réinitialisation des styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles pour le corps de la page */
body {
    font-family: Arial, sans-serif;
    background-color: #f0c946;
    padding: 0;
}

/* Styles pour l'en-tête */
header {
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: #ef8632;
}

.logo-container img {
    width: 100px;
    margin-right: 20px;
}

h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

h2 {
    text-align: center;
}

/* Styles pour la vidéo */
video {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: 75em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Styles pour le texte du défi */
p {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    color: #000;
}

/* Styles pour le bouton AR
button#startAR {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    background-color: #ef220e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

button#startAR:hover {
    background-color: #ef8632;
} */

#ar-link {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    background-color: #ef220e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
    width: 20%;
    text-decoration: none;
}

#ar-link:hover {
    background-color: #ef8632;
}

@media screen and (max-width: 600px) {
        #ar-link {
            width: 90%;
        }
        video {
            height: auto;
        }
    }

.centered {
    text-align: center;
}

/* Styles pour la section de présentation fictive */
section#presentation {
    padding: 20px;
}

section#presentation h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

section#presentation p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

/* Style pour la bainiière du bas */
    .bbt-banner {
        width: 25%;
        margin: 0 auto;
    }
    @media screen and (max-width: 600px) {
        .bbt-banner {
            width: 90%;
        }
    }
    .banner {
        display: flex;
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        align-items: center;
        padding: 20px;
    }
    
    .banner .content {
        flex: 2;
    }
    
    .bbt-banner a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: #000;
    }
    
    .banner .content h2 {
        text-align: left;
        font-size: 1em;
    }
    
    .banner .content p {
        text-align: left;
        font-size: 0.75em;
        color: #333;
        margin: 0;
    }
    
    .banner .image {
        flex: 1;
        text-align: center;
    }
    
    .banner img {
        max-width: 100%;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

/* Styles pour le pied de page */
footer {
    text-align: center;
    margin-top: 20px;
    color: #777;
}

/* Styles pour les liens du pied de page */
footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
