body {
  background-image: url('ch3survey.png');
  background-position: center;
  background-size: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.question1, .question2, .question3 {
  font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Consolas', 'Monaco', monospace;
  font-weight: bold;
  display: block;
  font-size: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-wrap: break-word;
  background-position: center;
  color: rgb(8, 0, 0);
  text-shadow: 2px 2px 3px rgb(255, 242, 210);
  max-height: 200px;
  max-width: 300px;
  text-align: center;
  margin-bottom: 20px;
  border: 5px solid rgb(66, 66, 66);
}

.question1 .short-answer, .question2 .short-answer, .question3 .short-answer {
  margin-top: 20px;
  margin-bottom: 20px;
}

.small-gap {
  display: block;
  height: 5px;
}

.question1 {
  background-image: url('stars.jpeg');
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question2 {
  background-image: url('balloons.jpeg');
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question3 {
  background-image: url('stickers.jpeg');
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.submit-box {
    font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Consolas', 'Monaco', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    padding: 10px 20px;
    background-color: rgb(66,66,66);
    text-align: center;
}

@media screen and (max-width: 390px) {  
  html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  body {
    background-image: url('ch3surveymobile.png');
    background-repeat: repeat;
    background-size: cover;
    background-position: top center;
  }

.question1 {
  background-image: url('stars.jpeg');
  font-size: 15px;
  position: relative;
  width: 130px;
  margin-top: 5%;
  margin-left: 60%;
}

.question2 {
  background-image: url('stickers.jpeg');
  font-size: 15px;
  position: relative;
  width: 150px;
  margin-top: 20%;
  margin-right: 50%;
}

.question3 {
  background-image: url('balloons.jpeg');
  overflow-wrap: break-word !important;
  font-size: 15px;
  position: relative;
  width: 150px;
  margin-top: 0%;
  margin-left: 47%;
}

.question1 .short-answer {
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 120px;
}

.question2 .short-answer, .question3 .short-answer {
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 130px;
}

.question1 label, .question2 label, .question3 label {
  line-height: 1;
  margin-top: 2px;
}

.button-container {
  position: absolute;
  right: 10px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: auto;
  margin: 0;
}

}