body {
  text-align: center;
  background-color: #2c2c2c;
}

#level-title {
  position: relative;
  top: -20px;
  font-family: 'Press Start 2P', cursive;
  font-size: 2rem;
  margin: 5%;
  color: #ffffff;
}

.container {
  /* display: flex; */
  position: relative;
  top: -40px;
  width: 50%;
  margin: auto;
  border: 2px solid #000000;
  background-color: rgb(56, 56, 56);
  border-radius: 20%;
  padding-top: 23px;
  padding-bottom: 23px;

}

.btn {
  cursor: pointer;
  margin: 25px;
  display: inline-block;
  height: 200px;
  width: 200px;
  border: 10px solid black;
  border-radius: 20%;
  outline: none;
}

.btn:hover {
  opacity: 0.8;
  transition: opacity .5s ease-in-out;
  border: 10px solid rgb(26, 26, 26);

}

.game-over {
  background-color: red;
  opacity: 0.8;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.blue {
  background-color: rgb(0, 145, 255);
}

.yellow {
  background-color: rgb(243, 174, 0);
}

.purple {
  background-color: rebeccapurple;
}

.orange {
  background-color: orangered;
}

.pressed {
  box-shadow: 0 0 20px white;
  background-color: grey;
}

.refresh {
  cursor: pointer;
  position: absolute;
  bottom: 2%;
  left: 2%;
}

.play {
  cursor: pointer;
  position: absolute;
 width:100px;
 height:100px;
  bottom: 2%;
  right: 2%;
}


/* Start of: Media Query Breakpoints */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .btn {
    height: 66px;
    width: 66px;
  }

  .container {
    position: relative;
    display: flex;
    top: 50px;
    width: 90%;
  }

  #level-title {
    top: 23px;
    font-size: 1rem;
  }
  .play{
    position: absolute;
    text-align: center;
    bottom:3%;
    left: 35%;
  }
  .refresh {
    position: absolute;
    text-align: center;
    bottom: 3%;
    left: 5%;
   height:50px;
   width:50px;
  }
}

/* End of: Media Query Breakpoints */

/* NOT IN USE RIGHT NOW */

/* Small devices (portrait tablets and large phones, 600px and up) */
/* @media only screen and (min-width: 600px) {} */

/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px) {} */

/* Large devices (laptops/desktops, 992px and up) */
/* @media only screen and (min-width: 992px) {} */

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {} */