body{
font-family: Arial, Helvetica, sans-serif;
}
#container{
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../images/bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
}

#info{
  position: relative;
  width: 370px;
  height: 260px;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
}
#info h1{
  position: relative;
  text-align: center;
  font-size: 65px;
  color: rgb(0, 64, 128);
  line-height: 70px;
  text-shadow: 2px 2px 2px yellow;
}
#info h3{
  position: absolute;
  top: 70px;
  left: 95px;
  font-size: 40px;
  color: rgb(0, 64, 128);
  text-shadow: 2px 2px 2px yellow;
}
#score{
  font-size: 45px;
  color: rgb(0, 64, 128);
  text-shadow: 2px 2px 2px yellow;
}
#info h4{
  position: absolute;
  top: 75px;
  left: 45px;
  font-size: 35px;
  color: rgb(0, 64, 128);
  text-shadow: 2px 2px 2px yellow;
  padding-top: 50px;
}
#hi-score{
  font-size: 45px;
  color: rgb(0, 64, 128);
  text-shadow: 2px 2px 2px yellow;
}
#start-button{
  position: absolute;
  top: 200px;
  left: 120px;
  font-size: 25px;
  width: 130px;
  height: 50px;
  border-radius: 15px;
  outline: none;
}
#start-button:hover{
  background: #333;
  color: antiquewhite;
  cursor: pointer;
  outline: none;
}
#nextup{
  width: 150px;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
}
#nextup div{
  width: 15px;
  height: 15px;
  border-radius: 5px;
}
#main-grid{
  width: 300px;
  height: 560px;
  background: rgba(136, 180, 146, 0.5);
  display: flex;
  flex-wrap: wrap;
  border: 25px ridge rgb(0, 64, 128);
  border-radius: 5px;
}
#main-grid div{
  width: 30px;
  height: 28px;
} 
.tetromino{
  border-radius: 5px;
}
@media screen and (min-width: 880px){
  #container{
    flex-direction: row;
    justify-content: space-around;
  }

  #info{
    position: relative;
    width: 400px;
    height: 500px;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    margin-top: 30px;
  }
  #info h1{
    font-size: 80px;
    position: relative;
    top: 10px;
    text-align: center;
  }
  #info h3{
    position: relative;
    top: 50px;
    left: 75px;
    font-size: 45px;
  }
  #score{
    font-size: 50px;
    color: rgb(0, 64, 128);
    text-shadow: 2px 2px 2px yellow;
  }
  #info h4{
    position: relative;
    top: 50px;
    left: 10px;
    font-size: 45px;
  }
  #hi-score{
    font-size: 50px;
    color: rgb(0, 64, 128);
    text-shadow: 2px 2px 2px yellow;
  }
  #start-button{
    position: relative;
    top: 150px;
    left: 120px;
    font-size: 30px;
    width: 150px;
    height: 75px;
    outline: none;
  }
  #nextup{
margin-top: 150px;
  }
}