@font-face {
  font-family: PlayfairDisplayBlack;
  src: url(PlayfairDisplay-Black.ttf);
}

body {
  background-image: url("Background.jpg");
  background-size: cover;
  background-position: center;
  background-color: #FFBAFE;
  margin: 0;
  border: 0;
  padding: 0;
}

p {
  margin-left: 10%;
  margin-right: 10%;
  color: #444444;
  font-size: 18px;
  font-family: sans-serif;
}

#Header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFFAA;
  width: 100%;
  height: 10%;
  margin: 0;
  border: 0;
  padding: 0;
}

#FormContainer {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s;
}

.Form {
  width: 70%;
  height: 70%;
  border-radius: 10px;
  background-color: #FFFFFF;
  text-align: center;
  overflow-y: auto;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 30px;
}

.Form::-webkit-scrollbar {
  width: 5px;
  height: 6px;
  background-color: #FFFFFF00;
}

.Form::-webkit-scrollbar-thumb {
  background-color: #6769EF;
}

.FormQuestion {
  margin-left: 20px;
  margin-right: 20px;
  color: #222222;
  font-family: PlayfairDisplayBlack, sans-serif;
  font-size: 30px;
}

.FreeResponse {
  border: 0;
  border-style: solid;
  border-color: #6769EF;
  width: 50%;
  height: 35px;
  background-color: #DDDDDD;
  font-size: 18px;
  font-family: sans-serif;
  color: #333333;
  outline: none;
  border-radius: 3px;
  transition: border 0.5s;
}

.FreeResponse:focus {
  border-bottom: 5px;
  border-style: solid;
  border-color: #6769EF;
  transition: border 0.5s;
}

.Next {
  text-align: center;
  height: 50px;
  width: 100px;
  background-color: #6769EF00;
  color: #6769EF;
  font-size: 18px;
  border-width: 2px;
  border-style: solid;
  border-color: #6769EF;
  border-radius: 5px;
  padding: 0;
  transition: background-color 1s, color 1s;
}

.Next:hover {
  background-color: #6769EFFF;
  color: #FFFFFF;
}

.SelectBox {
  height: 20px;
  width: 20px;
  display: inline-block;
  background-color: #FFFFFF;
  border-width: 3px;
  border-color: #6769EF;
  border-style: solid;
  margin-right: 5px;
  transition: background-color 1s;
}

.Option {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #444444;
  font-size: 18px;
  font-family: sans-serif;
  margin-right: 20px;
}

.OptionsContainer {
  display:flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 35%;
}

@media screen and (max-device-width: 900px)
{
  p {
    font-size: 25px;
  }

  .Next {
    height: 60px;
    width: 120px;
    font-size: 25px;
  }

  .Option {
    font-size: 25px;
  }

  .SelectBox {
    height: 30px;
    width: 30px;
  }

  .Form {
    padding-top: 30%;
    height: 40%;
  }
}
