/*@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Dancing+Script:wght@700&display=swap'); */

body {
    /*font-family: 'Cinzel', serif;*/
	font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background: #8A2BE2;
    color: white;
}

.header {
    background-image: url("medias/header.jpg"); /* Chemin de l'image */
    /*background-size: cover; *//* Ajuste l'image pour couvrir tout l'espace */
    background-position: center; /* Centre l'image */
    height: 170px; /* Hauteur de l'entête */
    max-width: 500px;
    margin: auto;
    padding: 20px;
   border: 1px solid #fff;
   border-radius: 10px 10px 0 0; /* Haut gauche | Haut droit | Bas droit | Bas gauche */
}

.container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #fff;
	border-radius: 0 0 10px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}

/* Adapter les inputs */

input, select, button {
    margin: 10px 0;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
}

select, input {
    width: 80%;
}

button {
    background-color: #ffcc00;
    color: #7b001c;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    background-color: #ffdd44;
    transform: scale(1.05);
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
}

a {
    color: #ffcc00;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

p {
    font-family: Verdana, sans-serif;  /* Légèrement plus large qu'Arial */
	font-size: 16px;
    color: #fff;
    line-height: 1.5;
    text-transform: none; /* Met le texte en majuscules */
}
/* Adapter le compte à rebours */
.countdown {
    display: block !important; /* Force l'affichage */
	font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    background: #ffcc00;
    /*color: black;*/
	color: #d9534f;
    border-radius: 5px;
    margin-bottom: 15px;
	visibility: visible !important;
    opacity: 1 !important;
}

/* Styles pour le texte du droit d'auteur */
.copyright {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Media queries pour les petits écrans */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }
    
    h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 18px;
    }
    
    button {
        font-size: 14px;
        padding: 8px;
    }

    .countdown {
        display: block !important;
        font-size: 16px;
        text-align: center;
    }
}