/* Reset CSS */
*{
   margin: 0px;
   padding: 0px;
   box-sizing: border-box;
}
body{
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   overflow-x: hidden;
   text-align: center;
   background: rgb(94,14,191);
   background: linear-gradient(90deg, rgba(94,14,191,1) 0%, rgba(173,15,108,1) 100%);
}
.meinDiv{
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
}
.mein-box{
   display: flex;
   justify-content: center;
   align-items: center;
}
main{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 30px;
}
main h1{
   font-size: 60px;
   margin-bottom: 15px;
   color: white;
}
/* Span styles Text Shadow */
.span1{
    text-shadow: 5px 5px 20px blue, 0 0 1em blue, 0 0 0.2em blue; 
}
.span2{
   text-shadow: 5px 5px 20px rgb(255, 217, 0), 0 0 1em rgb(255, 217, 0), 0 0 0.2em  rgb(255, 217, 0); 

}
.span3{
   text-shadow: 5px 5px 20px red, 0 0 1em red, 0 0 0.2em red; 
}
/* Span styles Text Shadow End */


.boxes{
   display: grid;
   grid-template-columns: repeat(3, 100px);
   gap: 5px;
   margin: auto;
}
.btn{
   text-shadow: 5px 5px 20px blue, 0 0 1em blue, 0 0 0.2em blue;
   color: rgb(224, 230, 231);
   height: 100px;
   width: 100px;
   font-size: 60px;
   cursor: pointer;
   background-color: rgb(64,7,76);
   border-radius: 5px;
   border: none;
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.box1{
   text-shadow: 5px 5px 20px red, 0 0 1em red, 0 0 0.2em red;

}
#Show-Disply{
   /* display: flex; */
   justify-content: center;
   align-items: center;
   height: 100vh;
   display: none;
}
#show-message{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#show-message p{
   font-size: 55px;
   margin-bottom: 10px;
   color: aliceblue  ;
   text-shadow: 5px 5px 20px red, 0 0 1em red, 0 0 0.2em red;
}
#show-message button{
   text-shadow: 5px 5px 20px red, 0 0 1em red, 0 0 0.2em red;
   color: rgb(224, 230, 231);
   background-color: rgb(0, 0, 0);
   padding: 10px 20px;
   font-size: 25px;
   border-radius: 10px;
   border: none;
   outline: none;
   cursor: pointer;
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#show-message span{
   text-shadow: 5px 5px 20px blue, 0 0 1em blue, 0 0 0.2em blue;

}
.hide-box{
   display: none;
}
#reset-game{
   text-shadow: 5px 5px 20px red, 0 0 1em red, 0 0 0.2em red;
   color: rgb(245, 253, 255);
   background-color: black;
   padding: 15px 20px;
   font-size: 22px;
   border-radius: 10px;
   border: none;
   outline: none;
   cursor: pointer;
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#reset-game span{
   text-shadow: 5px 5px 20px blue, 0 0 1em blue, 0 0 0.2em blue;

}
@media(max-width: 400px){
   main h1{
      font-size: 55px;
   }
   .mein-box{
      height: auto;
      width: 100%;
   }
   .btn{
      width: 100px;
      height: 100px;
      font-size: 60px;
   }
   #reset-game{
      font-size: 25px;
      padding: 10px 20px;
   }
   #show-message p{
      font-size: 45px;
   }
}
@media (max-width: 340px) {
   #show-message p{
      font-size: 40px;
   }
   main h1{
      padding-top: 15px;
      font-size: 55px;
   }
   .boxes {
      grid-template-columns: repeat(3, 90px);
   }
   .btn {
      width: 90px;
      height: 90px;
      font-size: 45px;
   }
}
