body {
  font-size: 20px;
  font-family: sans-serif;
  color: #333;
  margin: 0;
  padding:0;
  width: 100vw;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.question {
  font-weight: 600;
  margin: 10px 0;
  width: fit-content;
  max-width: 90%;
}
.answers {
  margin-bottom: 20px;
  /* max-width: 80%; */
}
.container{
    margin: 80px 50px;
    padding:20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(140deg,rgba(255, 192, 203,0.7), rgba(255, 192, 203,0.5),rgba(230, 216, 218, 0.3));    
    width: auto;
    box-shadow: 0 0 10px 2px;
    -webkit-box-shadow:0 0 10px 2px;
}
#submit {
  font-family: sans-serif;
  font-size: 20px;
  background-color: #297;
  color: #fff;
  border: 0px;
  border-radius: 3px;
  padding: 20px;
  cursor: pointer;
  margin-bottom: 20px;
}
#submit:hover {
  background-color: #3a8;
}
label{
    display: block;
}