/* Style général */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
}

/* Conteneur centré */
.container {
    text-align: center;
    background-color: #fff;
    padding: 10px; /* Reduced padding for smaller screens */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%; /* Increased width for smaller screens */
    max-width: 600px;
}

/* Logo */
.logo {
    max-width: 80%; /* Adjust max-width based on screen size */
    height: auto;
}


/* Bouton personnalisé en orange */
.btn-orange {
    position: relative;
    background-color: #ff8800;
    color: white;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.8s ease;
}

.btn-orange::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 300%;
    background-color: #5a2f05;
    transition: all 0.8s ease;
    z-index: -1;
}

/* Effet de vague lors du survol */
.btn-orange:hover::before {
    top: 0;
}

.btn-orange:hover {
    color: white;
}

/* Titre */
h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

/* Paragraphe */
p {
    font-size: 1.2em;
    color: #666;
}

/* Requête média pour écrans plus petits */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 2em; /* Réduit la taille de la police pour les écrans plus petits */
    }
    p {
        font-size: 1em; /* Réduit la taille de la police pour les écrans plus petits */
    }
}
