@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');
*{box-sizing: border-box;}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Jost', sans-serif;
  background: #000
  url("bg.jpg")
  no-repeat center;
  background-size: cover;
  min-height: 100vh;
  color: white;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.2vw;
}

/* HANDPHONE*/
@media (max-width: 800px) {
  *{
    font-size: small; 
  }
  #title {
    font-size: x-large;
  }
  
  #survey-form {
    flex-direction: column;
  }
  #description {
    padding: 0 1.5rem;
  }
}

/* CSS */

img {
  max-width: 60%;
  margin: 10px auto;
  display: block;
  text-align: center;
}
#title,
#description {
  margin: 10px 20px;
  text-align: center;
  text-shadow: 1px 1px 10px #000;
}
#title {
  font-size: clamp(1.5rem, 2rem, 2rem);
}
#description {
  color: #C7A665;
  font-size: medium;
}

#survey-form {
	max-width: 80%;
  height: auto;
  margin: auto;
  padding: 1.2em;
  border-radius: 10px;
  background-color: rgb(0,0,0,60%);

  display: flex;
  flex-wrap: wrap;
}

label {
  display: table-row;
  font-size: 1.2em;
  margin-bottom: 8px;
}

.form-input {
  margin: 1.2em;
  flex: 1;
}

input,
#dropdown,
textarea,
#submit {
  border-radius: 5px; padding: 8px;
  border: 2px solid #C7A665;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  padding: 1vw;
}

input[type="radio"] {
  width: 20px;
  accent-color: #C19D53;
}

select {
  padding: 0;
}
textarea {
  min-height: 150px;
  resize: none;
}

#submit {
  color: white;
  background: #C19D53;
}