
@media screen and (max-width: 3840px) {
  body {
    background-image: url("ch6backgrounddesktop.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@font-face {
  font-family: 'Franks';
  src: url('Franks.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
}
#home {
  border-top-width: 5px;
  left: 55px; 
  width: 100px;
  height: auto;
}
.question1, .question2, .question3, .question4, .question5 {
    font-family: 'Franks', cursive;
  font-size: 15px;
  font-color: black;
  max-width: 250px;
  background-color: rgba(172,172,172, 0.7);
    background-image:
      linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
      url('glitter.jpeg');
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  border: 5px solid #529351; 
  box-shadow: 0px 6px 20px rgba(65, 122, 64, 0.7);
}
.submit-box {
  font-family: 'Franks', cursive;
  font-size: 15px;
  font-color: black;
  width: 100px;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1; 
}

@media screen and (max-width: 768px) {
  body {
    background-image: url("ch6backgroundmobile.png");
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
  }
#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 175px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
}
#home {
  position: fixed;
  top: 2px;
  left: 5px; 
  width: 50px;
  height: auto;
}
.question1, .question2, .question3, .question4 {
  font-family: 'Franks', cursive;
  font-size: 15px;
  font-color: black;
  max-width: 190px;
   background-color: rgba(172,172,172, 0.7);
    background-image:
      linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
      url('glitter.jpeg');
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  border: 5px solid #529351; 
  box-shadow: 0px 6px 20px rgba(65, 122, 64, 0.7)
}
.short-answer {
display: block;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.submit-box {
  font-family: 'Franks', cursive;
  font-size: 15px;
  font-color: black;
  width: 100px;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1; 
}
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  body {
    background-image: url("ch6backgroundipad.png");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
  }
#home {
  position: fixed;
  top: 10px;
  left: 10px; 
  width: 100px;
  height: auto;
}
#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
}
.question1, .question2, .question3, .question4 {
  font-family: 'Franks', cursive;
  font-size: 15px;
  font-color: black;
  max-width: 250px;
   background-color: rgba(172,172,172, 0.7);
    background-image:
      linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
      url('glitter.jpeg');
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
  padding: 10px;
  margin: 20px;
  border-radius: 10px;
  border: 5px solid #529351; 
  box-shadow: 0px 6px 20px rgba(65, 122, 64, 0.7)
}
}

