body {
  font-family: 'Roboto Condensed', sans-serif;
}
.content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.title-header {
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1px;
  margin-right: 48%;
  background: red;
  background: -webkit-linear-gradient(left, orange , yellow, green, cyan, blue, violet);

  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  padding: 0;
}
.container {

  position: relative;
}
#game-canvas {
  margin: 0 auto;
}
.score-text {
  position: absolute;
  left: 61%;
  top: 10%;
  color: rgba(255,255,255,0.7);
}
.top-row {
  display: flex;
}

.top-scores {
  height: 200px;
  margin-left: 50px;
}

.top-scores li {
  list-style-type: none;
  text-align: center;
  font-size: 18px;
  margin-right: 25px;
  background: #333;
  padding: 5px;
  color: rgba(255,255,255,0.8);
}
#third{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.high-score {
  color: black;
  margin-right: 25px;
  font-size: 35px;
  background: #222;
  border-top: 1px solid black;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: white;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.control-container {
  display: flex;
}
.restart-btn {

  margin-left: 245px;
  padding: 15px 45px;
  margin-top: 5px;
  background: #5cbcf6;
  border: 0;
  outline: 0;

  font-size: 25px;
  border-radius: 15px;
  color: white;
  letter-spacing: 1px;
}
.a {
  width: 50px;
  height: 50px;
}
.instruction {
  margin-left: 50px;
  color: #5cbcf6;
  letter-spacing: .015em;

}
.restart-btn:hover {
  background: #87CEEB;
  transition: 100ms all linear;
  transform: scale(1.04);
}
