* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(./img/netflix-background-image.png);
  color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#container {
  max-width: 1240px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: auto;
  margin-top: 30px;
}

#title {
  color: #ffffff;
  font-family: "Bowlby One SC", cursive;
  font-size: 50px;
  letter-spacing: 0.05em;
}

span {
  color: #ff0000;
}

#description {
  font-family: "Sorts Mill Goudy", serif;
}

#header {
  text-align: center;
}

#survey-form-container {
  width: 500px;
  background-color: rgba(0, 0, 0, 0.8);
  margin: auto;
  padding: 30px 40px;
  margin-bottom: 30px;
}

#name,
#age,
#email,
#dropdown,
#feedback {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

.input-box {
  margin-top: 20px;
}

#checkbox,
#radio {
  margin-top: 40px;
}

#feedback {
  resize: none;
  height: 91.46px;
}

#form-button {
  width: 160px;
  height: 45px;
  background-color: #ff0000;
  border-radius: 50px;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 15px;
}

#form-button:hover {
  background-color: #fff;
  color: red;
}

.form-submit {
  text-align: center;
}
