body{
    margin: 0;
}

.block_2{
    
    position: absolute;
    left: 0px;
    background-color: black;
    background-image: url("images/soluce_labyrinthe_11433.jpg") ;
    background-origin: border-box;
    background-repeat: no-repeat;
    width: 110%;
    height : 100%;
}

.block_1{
    position: absolute;
    left: 0px ;
    width: 300px;
    height: 100% ;
    background-color: RED;
}
.titre{
    text-align: center;
    
}
.test{
    position: absolute;
    bottom: 5%;
    left: 30%;
    
    text-align : center;
    
}

#mydiv {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
}
#mydiv2 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    
    
    text-align: center;
}

#mydiv3 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#mydiv4 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#mydiv5 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#mydiv6 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#mydiv7 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#mydiv8 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#mydiv9 {
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
}

#mydivheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
}
.img{
    width: 150px;
    height:150px;
}
.enigme{
    position:absolute;
    color-background: #FEFEE2;
    
    width: 500px;
    height:500px;
    left: 500px;
    top: 500px;
}
.para{
    position: absolute;
    top:30%;
    left: 35%;
    color: white;
}
.footer{
    position: absolute;
    top:95%;
    left: 1%;
    color: white;
}

/*bouton acceuil*/
.button_class{
    position: absolute;
    top: 50%;
    left: 40%;
    color: rgba(35,31,32,255);
    cursor:pointer;
    padding: 0.35em 1em;
    margin : 10px 0;
    border: 0.15em solod var(--glow-color);
    border-radius: 0.45em;
    background: none;
    perspective: 2em;
    font-family: "Raleway", sans-serif;
    font-size: 1em;
    font-weight: 900;
    letter-spacing: 1em;
    
    -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
			0px 0px 0.5em 0px var(--glow-color);
    -moz-box-shadow:inset 0px 0px 0.5em 0px var(--glow-color),
		    0px 0px 0.5em 0px var(--glow-color);
    box-shadow:inset 0px 0px 0.5em 0px var(--glow-color),
               0px 0px 0.5em 0px var(--glow-color);
    animation: border-flicker 2s linear infinite;
    
}
.button_class:hover{
    border-color: var(--glow-color);
    border-radius: 0.45em;
    padding: 0.35em 1em;
    background: none;
    box-shadow: 0 1px 1px var(--glow-color) inset,
		0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0 none;
}
.glowing-btn{
    position: relative;
    color: var(--glow-color);
    cursor:pointer;
    padding: 0.35em 1em;
    margin : 10px 0;
    border: 0.15em solod var(--glow-color);
    border-radius: 0.45em;
    background: none;
    perspective: 2em;
    font-family: "Raleway", sans-serif;
    font-size: 1em;
    font-weight: 900;
    letter-spacing: 1em;
    
    -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
			0px 0px 0.5em 0px var(--glow-color);
    -moz-box-shadow:inset 0px 0px 0.5em 0px var(--glow-color),
		    0px 0px 0.5em 0px var(--glow-color);
    box-shadow:inset 0px 0px 0.5em 0px var(--glow-color),
               0px 0px 0.5em 0px var(--glow-color);
    animation: border-flicker 2s linear infinite;
}

.glowing-btn::before{
    content: "";
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    filter: blur(1em);
    transform: translateY(120%) rotateX(95deg) scale(1,0.35);
    background: var(--glow-color);
    pointer-events:none;
}
.glowing-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    background-color: var(--glow-color);
    box-shadow: 0 0 2em 0.2em var(--glow-color);
    transition: opacity 100ms linear;
}
.glowing-btn:hover{
    color: rgba(162,0,255,0.8);
    text-shadow: none;
    animation: none;
}
.glowing-btn:hover:before{
    filter: blur(1.5em);
    opacity : 1;
}
.glowing-btn:hover:after{
    opacity : 1;
}
@keyframes border-flicker {
    0% {
	opacity: 0.1;
    }
    2% {
	opacity : 1;
    }
    4% {
	opacity: 0.1;
    }
    8%{
	opacity: 1;
    }
    70% {
	opacity: 0.7;
    }
    100% {
	opacity : 1;
    }
    @media only screen and (max-width: 600px) {
	.glowing-btn{
	    font-size: 1em;
	}
    }
}
/*fin bouton acceuil*/
/* page among us */
#among_us_part_1 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
}
#among_us_part_2 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
}

#among_us_part_3 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#among_us_part_4 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#among_us_part_5 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#among_us_part_6 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#among_us_part_7 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#among_us_part_8 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
    
}
#among_us_part_9 {
    top: 30%;
    left : 20%;
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 150px;
    text-align: center;
}

#mydivheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
}
.img_among{
    width: 150px;
    height:150px;
}
.enigmation{
    position: absolute;
    color: #ffffff;
    width: 500px;
    height:500px;
}

/*end page among us*/
/*timer*/
#timer{
    position: absolute;
    width:200px;
    height: 300px;
    font-size:2em;
    left: 35%;
    top: 300px;
    color: white;
    background-color: rgba(35,31,32,255);
}
.reset{
    position:absolute;
    
    left: 40%;
    top : 350px;
    
}
.increase{
    position:absolute;
    
    left: 35%;
    top : 350px;
}
/*timer end*/
/* found_it*/
.paragraphe {
    color: rgba(35,31,32,255);;
    position: absolute;
    left : 35%;
    top: 40%;
}
.jeu{
    position: absolute;
    left:35%;
    top: 40%;
}
.paragraphe2{
    color: white;
}
.paragraphe3{
    position: absolute;
    color: white;
    left: 35%;
    top: 55%;
}

/*end found_it*/
/*move*/

.button_div_move{
    position: absolute;
    z-index: 9 ;
    top: 700px;
    left: 500px;
    widht: 100px;
    height: 100px;
    
}
.button_move {
    position: absolute;
    padding: 16px 30px;
    font-size: 1.5rem;
    color: var(--color);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    text-shadow: 0 0 15px var(--color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: 0.5s;
    z-index: 1;
}

.button_move:hover {
    color: #fff;
    border: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 0px var(--color);
}

.button_move::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color);
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.button_move:hover::before {
    transform: scale(1);
    transition-delay: 0.5s;
    box-shadow: 0 0 10px var(--color),
		0 0 30px var(--color),
		0 0 60px var(--color);
}
   
.button_move span {
    position: absolute;
    background: var(--color);
    pointer-events: none;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color),
		0 0 20px var(--color),
		0 0 30px var(--color),
		0 0 50px var(--color),
		0 0 100px var(--color);
    transition: 0.5s ease-in-out;
    transition-delay: 0.25s;
}

.button_move:hover span {
    opacity: 0;
    transition-delay: 0s;
}

.button_move span:nth-child(1),
.button_move span:nth-child(3) {
    width: 40px;
    height: 4px;
}

.button_move:hover span:nth-child(1),
.button_move:hover span:nth-child(3) {
    transform: translateX(0);
}

.button_move span:nth-child(2),
.button_move span:nth-child(4) {
    width: 4px;
    height: 40px;
}

.button_move:hover span:nth-child(1),
.button_move:hover span:nth-child(3) {
    transform: translateY(0);
}

.button_move span:nth-child(1) {
    top: calc(50% - 2px);
    left: -50px;
     transform-origin: left;
}

.button_move:hover span:nth-child(1) {
    left: 50%;
}

.button_move span:nth-child(3) {
    top: calc(50% - 2px);
    right: -50px;
    transform-origin: right;
}

.button_move:hover span:nth-child(3) {
    right: 50%;
}

.button_move span:nth-child(2) {
    left: calc(50% - 2px);
    top: -50px;
    transform-origin: top;
}

.button_move:hover span:nth-child(2) {
    top: 50%;
}

.button_move span:nth-child(4) {
    left: calc(50% - 2px);
    bottom: -50px;
    transform-origin: bottom;
}

.button_move:hover span:nth-child(4 ) {
    bottom: 50%;
}

/*end move*/
/*labyrinthe*/
.btn_nord{
    position: absolute;
    top: 50%;
    left: 40%;
}
.btn_south{
    position: absolute;
    top: 70%;
    left: 40%;
}

.btn_est{
    position: absolute;
    top: 60%;
    left: 50%;
}

.btn_west{
    position: absolute;
    top: 60%;
    left: 30%;
}
.btn_enter_lab{
    position: absolute;
    top: 50%;
    left: 40%;
}
.para1{
    position: absolute;
    color: white;
    left: 40%;
    top: 55%;
}

/*end labyrinthe*/
