@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
}

.container {
  position: relative;
  width: 1110px;
  margin: auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
}

.question {
  position: relative;
  margin: auto;
  margin-bottom: 1rem;
}

.questionHeader {
  display: flex;
  flex-direction: row;
}

.questionText {
  font-size: 30px;
  display: flex;
  align-items: center;
  padding: 20px;
  width: 965px;
  height: 85px;
  border: 5px solid black;
  font-weight: 800;
  background-color: white;
}

.imageBox {
  display: flex;
  justify-content: center;
  position: relative;
  border: 5px solid black;
  width: 110px;
  height: 125px;
  background-color: black;
}

.imageBox img {
  position: absolute;
  bottom: 0;
}

.toggle {
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 30px;
  padding: 20px;
}

.answer {
  position: relative;
  font-size: 24px;
  top: -7rem;
  z-index: -2;
  margin-left: 3rem;
  width: 97%;
  right: 0;
  background-color: #F0F0F0;
  min-height: 150px;
}

.answerText {
  display: block;
  background-color: #F0F0F0;
  /* padding-bottom: 6rem; */
  position: relative;
  width: 92%;
  padding: 50px;
  padding-top: 7rem;
  transition: .2s;
}

.visible {
  background-color: #FFDD00;
  transition: .2s;
  height: 250px;
}

.hidden {
  background-color: #F0F0F0;
  transition: .2s;
  height: 0;
  overflow: hidden;
}

.hidden p {
  display: none;
}