@CHARSET "UTF-8";

/* Réinitialisation de certaines marges et paddings par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: monospace, Inconsolata, "DejaVu Sans Mono";
    background-color: #333;
    color: #68d52a;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
	flex-direction: column;
	min-height: 100vh;
    margin: 0;
	/*text-shadow: 0 0 5px #c8c8c8;*/
}

/* Conteneur global de la page */
.container {
    max-width: 1200px;
    width: 90%;
    background-color: #000;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
	flex-grow: 1;
}

/* Logo */
.logo img {
    /*max-width: 100px;*/
    height: auto;
    margin-bottom: 20px;
}

/* Titre (H1) */
h1 {
    font-size: 1.8em;
	font-weight:bold; 
	color:#68d52a;
    margin-bottom: 20px;
}

h2{
	font-size: 1.75em;
	 margin-bottom: 20px;
}


/* Menu de navigation */

#menu { display: flex; justify-content: center; align-items: center; margin-bottom:25px; background-color: #333;} 
#menu a{font-size:1.2em;color:#32ffff; font-weight:bold; padding: 10px 10px 10px 10px; text-shadow: 0 0 5px #c8c8c8; text-transform:uppercase; text-decoration:none; }



#menu {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-dropdown {
    position: relative;
    display: inline-block;
}

.menu-dropdown .arrow {
    font-size: 0.7em;
    margin-left: 4px;
}

.submenu {
    display: none;
    position: absolute;
    left: 0;
    background: #333;     
    border: 1px solid #444;
    padding: 5px 0;
    min-width: 120px;
    z-index: 1000;
}

.submenu a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;         
}

.submenu a:hover {
    background: #555;     
}

.menu-dropdown:hover .submenu {
    display: block;
}

.picto {margin-top: 10px;width:25px;}

/* Zone de texte */
.content {
    margin-bottom: 20px;
    text-align: justify;
}

.yellow{
	color: #fff600
}


a{color:#32ffff;}

/* table */
  .table-container {
            display: inline-block;
            margin-right: 10px; 
        }	
table, th, td {
  border: 1px dotted #333;
  border-collapse: collapse;
  padding : 10px 10px 10px 10px; 
}


/* Pied de page */
.footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}


/* compte à rebours */
  .box-rebours{ 
            /*height: 100vh; */
            display: flex; 
            justify-content: center; 
            align-items: center; 
            text-align: center; 
        }
        .box_jour, .box_heure, .box_minute, .box_seconde { 
            padding: 10px; 
        }
        #jour, #heure, #minute, #seconde { 
            background:#000; 
            padding: 10px 20px; 
            color: #68d52a; 
            font-size: 3rem; 
            font-weight: bold; 
        }
        #jour_label, #heure_label, #minute_label, #seconde_label { 
            font-size: 1.5rem; color: #68d52a; 
        }

/***********************/
/* Styles pour mobile */
/***********************/

@media (max-width: 768px) {
	/* Logo */
.logo img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
	font-size: 1.1em;
	 margin-bottom: 10px;
}
h2{
	font-size: 1.0em;
	 margin-bottom: 10px;
}
/* Menu de navigation */

#menu { display: flex; justify-content: left; align-items: center; margin-bottom:25px; } 
#menu a{font-size:0.6em;padding: 2px 2px 2px 2px;}

    .menu ul {
        flex-direction: column;
        align-items: center;
		width: 10%;
		height: 10%;
		background-position: center;
		background-size: cover;
    }

    .menu ul li {
        margin: 0 0;
    }
	
		 #topblue .lblmc{
		display : none;
		 
	 }
	 
.picto {margin-top: 10px;width:12px;}
	
/* Zone de texte */
.content {
    margin-bottom: 20px;
    text-align: left;
}	

/* compte à rebours */
  .box-rebours{ 
            /*height: 100vh; */
            display: flex; 
            justify-content: center; 
            align-items: center; 
            text-align: center; 
        }
        .box_jour, .box_heure, .box_minute, .box_seconde { 
            padding: 10px; 
        }
        #jour, #heure, #minute, #seconde { 
            background:#000; 
            padding: 10px 20px; 
            color: #68d52a; 
            font-size: 1rem; 
            font-weight: bold; 
        }
        #jour_label, #heure_label, #minute_label, #seconde_label { 
            font-size: 1.1rem; color: #68d52a; 
        }


}
