@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500&display=swap');

body {
  background-size: cover;
  background: bisque url(https://i.imgur.com/rDr7lXt.jpg) no-repeat center;
  font-family: 'Montserrat Alternates';
  color: beige;
}

header {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

h1 {
  padding: 5px;
}

main {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
}

#description {
  text-align: center;
  font-size: larger;
}

#survey-form {
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5%;
}

#textarea {
  width: 100%
}

button {
  background-color: #baa065;
  width: 100%;
  height: 30px;
  border-radius: 2px;
  border: none;
  font-size: 20px
}

button:hover {
  background-color: bisque;
}

footer {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

footer ul {
  list-style-type: none;
  padding: 10px;
}

footer a {

}

#logo {
  height: 50px;
}