body {
  background-color: #ccffee;
}

#title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  background-image: url('images/triangle.png');
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  width: 67%;
  height: 650px;
  margin: 0 auto;
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 0px;
}

h2 {
  font-size: 1.7rem
}

h3 {
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.setup-area {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 350px;
  margin-top: 300px;
  display: flex;
  justify-content: space-between;
}

div#instructions ul {
  padding-left: 15px;
  list-style-type: square;
  line-height: 1.5;
}

input#limit {
  width: 60px;
  height: 40px;
  font-size: 1rem;
  padding-left: 20px;
}

.score-box {
  width: 150px;
  height: 40px;
  border-radius: 10px 10px 120px 120px;
  margin: 50px 150px;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid black;
}

#question-answer {
  display: flex;
  margin: 30px 0px;
}

h1#question {
  margin: 0px;
  padding-top: 10px;
}

input#answer {
  width: 70px;
  height: 60px;
  font-size: 2.5rem;
  margin-left: 20px;
  padding-left: 20px;
}

.game-area {
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.game-box {
 background-color: rgba(255, 255, 255, 0.8);
 width: 380px;
 height: 340px;
 border-radius: 50px 50px 800px 800px ;
 margin-top: 80px;
 padding: 10px;
 border: 1px solid black;
}

#game-play {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#start-button {
  background-color: rgb(255, 255, 0);
  padding: 10px 20px;
  margin-bottom: 30px;
  font-size: 1rem;
}

span {
  font-size: 2rem;
}


