/* Styles généraux */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('../img/back5.png') no-repeat center center fixed;
    background-size: cover; /* Couleur de fond claire */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 90%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Boutons */
.btn {
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
    background-color: #fae800; /* Nouvelle couleur de fond */
    border-color: black;
    color: black;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #fae800;
    border-color: black;
    color: black;
}

/* Logo */
.container img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Boutons */
.container .btn {
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.container .btn:hover {
    transform: scale(1.05);
}

/* Ajustements pour les écrans de petite taille */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 1.5rem;
    }

    .container .btn {
        font-size: 1rem;
        padding: 10px;
    }

    .container img {
        max-width: 70%;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 1rem;
    }

    .container .btn {
        font-size: 0.9rem;
        padding: 8px;
    }
}
