@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,300&family=Roboto:ital,wght@1,300&family=Titan+One&display=swap");
*{
    margin: 0;
    padding: 0;
}
.tiktaknav {
    display: flex;
    justify-content: center;
    padding-top: 1%;
  }
  .tiktaknav h1 {
      font-family: "Titan One", sans-serif;
      font-size: 300%;
  }
  .tiktakbody {
    margin: 0;
    padding: 0;
  }
.gamecontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4%;
}
.gamebox {
  display: grid;
  grid-template-columns: repeat(3, 10vw);
  grid-template-rows: repeat(3, 10vw);
  color: black;
  /* background-image: url('../img/y5.gif'); */
}
.box {
  border: 5px solid #000000;
  font-size: 9vw;
  text-align: center;
  justify-content: center;
  
}
.box:hover {
  background-color: #9ae0d3;
}
.boxtext{
    font-family: 'Titan One', sans-serif;
    transition: zoom 5s ease;
}
.gameinfo {
  background: #89c8dd;
  width: 40%;
  margin-left: 5%;
  border-radius: 1%;
}
.gameinfo h2{
    font-family: 'Titan One', sans-serif;
    color: #4169E1;
    font-size: 500%;
}
.turninfo{
    font-size: 300%;
    margin-top: 2%;
}
.wininfo{
    width: 0;
    font-size: 400%;
    margin-top: 2%; 
    font-family: 'Titan One', sans-serif;
    transition: width 1s ease;
}
#reset {
  color: white;
  font-size: 25px;
  line-height: 50px;
  background: red;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  text-align: center;
  padding-top: 3px;
  cursor: pointer;
  position: absolute;
  top: 3vh;
  left: 2vw;
}

.imgbox{
    margin-top: 5%;
    display: flex;
    justify-content: center;
}
.imgbox img{
    width: 0;
    
    transition: width 1s ease-in-out;
}

.br-0 {
  border-right: 0;
}
.bl-0 {
  border-left: 0;
}
.bt-0 {
  border-top: 0;
}
.bb-0 {
  border-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .gamebox {
    grid-template-columns: repeat(3, 30vw);
    grid-template-rows: repeat(3, 30vw);
  }
  .gameinfo {
    width: 80vw;  
    margin-left: 0;
    margin-top: 5%;
  }
  .box{
    font-size: 25vw;
  }
  .gameinfo h2{
    font-size: 300%;
    }
    .turninfo{
        font-size: 200%;
    }  
    .imgbox{
        position: absolute;
        top: 70vh;
       
    }
    
}
