/* CSS Document */

body {
	background: #f7f0df;
	color: #595959;
}
			
h1 {

}	
h2 {

}	
h3 {

}	
h4 {

}
			
.navbar {
	background-image: url("../images/navwave.png");
	background-repeat: round;
	background-size: auto;
	color: white;
	justify-content: center;
    padding-bottom: 2.5vh;
	
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 9vh;
}
.navbar a {
	color: white;
	font-family: 'Quattrocento Sans', sans-serif;
    font-size: 5vw;
    margin: 0;
}
			
main {
	height: 86.5vh;
    margin-top: 9vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
			
.input-group-text {
    background-color: #e1d7bd;
    border: 1px solid #ced4da;
}
	
#compteur {
	background: #53ae6e;
    display: inline-block;
    padding-left: 1vh;
    padding-right: 1vh;
    min-width: 9vh;
    width: auto;
    height: 9vh;
    border-radius: 50%;
    line-height: 9vh;
    text-align: center;
    color: white;
    font-size: 5vh;
    font-weight: bold;
    position: fixed;
    top: 6vh;
    transform: translateX(-50%);
    left: 50%;
}

#iframechange {
	display: none;
}

#bt_actualiser {
    display: flex;
    background: #ffffffe6;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#simpleList i {
    color: #bcc6f2;
}
.up-down {
	background-image: url(../images/up-down-solid.svg);
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position: 0.5rem;
}

.result_gamer_title {
    font-size: 8vw;
	text-align: center;
}
.result_gamer_points {
    font-size: 30vw;
    line-height: 24vw;
    font-weight: 700;
    color: #a82121;
	text-align: center;
}
.result_gamer_unity {
    font-size: 12vw;
	text-align: center;
}

footer {
    background: #53ae6e;
    height: 4.5vh;
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100vw;
}

landscape,
desktop {
	display: none;
}


/****  CSS pour les smartphones en mode paysage ****/
@media (min-width: 500px) and (max-width: 801px) {
/*@media (orientation: landscape) {*/
	main,
	nav.navbar,
	footer {
		display: none !important;
	}
	landscape {
		display: flex;
	
		height: 85vh;
		flex-direction: column;
		justify-content: center;
	}
	landscape img {
    	max-height: 75vh;
	}
}



/****  CSS pour les ordinateurs ****/
@media (min-width: 800px) and (max-width: 5000px) {
/*@media (orientation: landscape) {*/
	main,
	nav.navbar,
	footer {
		display: none !important;
	}
	desktop {
		display: flex;
	
		height: 85vh;
		flex-direction: column;
		justify-content: center;
	}
	desktop img {
    	max-height: 75vh;
	}
}
