body {
  width: 1000px;
  background-color: white;
  color: black;
  font-size: 18pt;
  margin: auto;
}

/* Show only the consent screen */
.startButton {
  height: 50px;
  width: 200px;
  font-size: 14pt;
  border-radius: 30px;
  border: 2px solid grey;
  cursor: pointer;
  transition: all 0.2s ease;
}

.startButton:hover {
  background-color: lightblue;
  border: 2px solid lightblue;
}

/* Welcome screen */
.welcome-screen {
  display: none;
}

/* Instruction 1 */
.instruction {
  display: none;
}

.instruction>img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.instruction.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-screen.show {
  display: block;
}

#instructions1 {
  margin-top: -35px;
}

/* response screen */
.response-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.descriptions {
  height: 30px;
}

/* Survey */
.survey {
  display: none;
}

.survey.show {
  display: block;
}


/* Ending screen */
.ending-screen {
  font-size: 18pt;
  margin-top: 150px;
  display: none;
}

.ending-screen.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}