@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Noto+Sans&display=swap');

body {
  background: linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url("https://wallpapercave.com/wp/wp6350571.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#title {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 42px;
  text-shadow: 1.5px 1.5px black;
  color: white;
  text-align: center;
  padding-top: 20px;
}

#description {
  max-width: 700px;
  margin: auto;
  font-family: "Montserrat";
  font-size: 20px;
  color: white;
  text-shadow: 1px 1px black;
  text-align: left;
}

#survey-form {
  max-width: 700px;
  height: 1125px;
  background-color: #000221;
  margin: auto;
  border-radius: 8px;
  font-family: "Montserrat";
  font-size: 18px;
  color: white;
  text-shadow: 1px 1px black;
}

#name-label {
  display: flex;
  margin: auto;
  width: 605px;
  padding-top: 20px;
}

#email-label {
  display: flex;
  margin: auto;
  width: 605px;
}

#number-label {
  display: flex;
  margin: auto;
  width: 605px;
}

#tel-format {
  display: flex;
  margin: auto;
  padding-top: 5px;
  width: 605px;
  font-size: 14px;
}

#discuss-label {
  display: flex;
  margin: auto;
  width: 605px;
}

#dropdown {
  width: 600px;
  height: 30px;
  display: flex;
  margin: auto;
  margin-top: 10px;
  font-family: "Montserrat";
  font-size: 16px;
}
  
#services-label {
  max-width: 600px;
  height: 30px;
  display: flex;
  margin: auto;
}

.options {
  font-family: "Montserrat";
  font-size: 18px;
  margin-left: 55px;
}

input[type=checkbox] {
  transform: scale(1.5);
  margin-top: 15px;
  margin-right: 15px;
}

input[placeholder] {
  font-family: "Montserrat";
  font-size: 16px;
}

.text-boxes {
  width: 600px;
  height: 30px;
  display: flex;
  margin: auto;
  margin-top: 10px;
  font-family: "Montserrat";
  font-size: 16px;
}

#more-info-label {
  max-width: 600px;
  height: 30px;
  display: flex;
  margin: auto;
}

input[type=radio] {
  transform: scale(1.5);
  margin-top: 15px;
  margin-right: 15px;
}

#comments-label {
  width: 600px;
  height: 30px;
  display: flex;
  margin: auto;
}

#comments {
  width: 600px;
  display: flex;
  margin: auto;
  margin-top: 10px;
  font-family: "Montserrat";
  font-size: 16px;
}

#submit {
  width: 600px;
  height: 45px;
  display: flex;
  margin: auto;
  justify-content: center;
  background-color: #999900;
  color: white;
  font-family: "Montserrat";
  font-size: 20px;
}

#submit:hover {
  cursor: pointer;
  opacity: 75%;
}

#credit {
  font-family: "Montserrat";
  font-size: 16px;
  color: white;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 500px) {

    .text-boxes {
        width: 400px;
    }

    #dropdown {
        width: 400px;
    }

    #submit {
        width: 400px;
    }

    #comments {
        width: 400px;
    }

    #services-label {
        margin-bottom: 15px;
    }

    #more-info-label {
        margin-bottom: 15px;
    }

}