*{
  margin: 0;
  padding: 0;
}

body{
  background-image: url('background.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#title{
  padding-top: 10px;
  padding-bottom: 10px;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: orange;
  font-weight: bold;
  text-shadow: 1px 1px 1px black;
}

#content{
  margin: auto;
  width: 90%;
  padding: 10px;
  font-size: 17px;
  text-align: justify;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}

#form{
  margin: auto;
  margin-top: 15px;
  width: 90%;
  padding: 10px;
  font-size: 17px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}
.contentbox{
  width: 100%;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 17px;
  border-radius: 5px;
  border: 1px solid rgb(220, 220, 220);
  box-shadow: 2px 2px 8px 2px rgba(0,0,0,0.1);
}