*{
    margin: 0;
    padding: 0;
    background-color: black;
}
li{
    float: right;
  }
  /* Make sure that padding behaves as expected */


/* Container for skill bars */


.skill-bars{
  text-align: right; /* Right-align text */
  padding-top: 10px; /* Add top padding */
  padding-bottom: 10px; /* Add bottom padding */
  color: white; /* White text color */
}

.html {width: 90%; background-color: #04AA6D;} /* Green */
.css {width: 80%; background-color: #2196F3;} /* Blue */
.js {width: 65%; background-color: #f44336;} /* Red */
.php {width: 60%; background-color: #808080;} /* Dark Grey */

  
  a  { display: block;
    padding: 8px;
    background-color:black;
    color: white;
    text-decoration: none;
  }
  h1{
    background-color: black;
    color: white;
    text-decoration: none;
  }
  .Game{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  .containor{
    display: grid;
    color:green;
    grid-template-columns: repeat(3, 25vh);
    grid-template-rows: repeat(3,25vh);
    cursor: pointer;
   
  }
  .box{
    border: 3px solid white;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

  .box-text{
    justify-content: center;
    align-items: center;
    font-size: 100px;
   
  }
  
   
  
  .GameOver {
    width: 0px;
    transition: width 1s ease-in-out;
}

.box:hover{
    background-color: rgb(20, 20, 20);
    width: 11vw;
    height: 25vh;
}
.line{
  background-color: black;
  height: 3px;
  width: 0;
  position: absolute;
  background-color:green;
  transition: width 1s ease-in-out;
}


  .info{
    margin-left: 35px;
    color: white;
    font-family: sans-serif;
    
  }
  .display{
    background-color: rgb(20, 18, 18);
    width:100%;
    height: 100%;
 
    justify-content: center;
    align-items: center;
    
    
  }
  button{
    color: white;
    background-color: green;
    font-size: 50px;
    cursor: pointer;
    border: 7px solid green;
    padding: 7px;
    border-radius: 12px;
  }
  .timerDisplay{
    position: relative;
    width: 30%;
    background: black;
    top: -50px;
    
    padding: 10px 0;
    font-family: 'Roboto mono',monospace;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(15, 148, 11, 0.541);
}

  @media screen and (max-width: 1063px)
  {
      .Game{
          flex-wrap: wrap;
      }
      .info{
          margin-top: 34px;
      }
      .info-turn{
          font-size: 1.5rem;
      }
      .container { 
          grid-template-rows: repeat(3, 20vw);
          grid-template-columns: repeat(3, 20vw);
      }
  }
  