
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
  font-family: Tahoma;
  font-size: 1.1rem;
}

h1,
p {
  margin: 1em auto;
  text-align: center;
  width: 100%;
}

form {
  width: 100%;
  margin: auto;
  border: 5px ridge
}

fieldset {
  border: none;
  padding: 2rem 6px;
  border-bottom: 3px solid white;
  width: 100%;
}

fieldset:last-of-type {
  border-bottom: none;
  border-top: none;
  
}

.hr{
  width: 100%;
}



label {
  display: block;
  margin: 1rem 10;
}

textarea,
select {
  padding: 6px;
  width: 95%;
  border-radius: 6px;
}

input,
textarea {
  background-color: rgba(255, 255, 255, 0.753);
  border: 1px solid #17172e;
  color: white;
  border-radius: 6px;
}

input[type="submit"] {
  display: block;
  width: 60%;
  margin: 1em auto;
  height: 2em;
  font-size: 1.1rem;
  background-color: #393982;
  border-color: white;
  min-width: 300px;
  border-radius: 6px;
  cursor: pointer;
}

.box{
  margin-bottom: 20px;
}

input[type=text],input[type=number],input[type=email] {
  padding: 6px;
  width: 80%;
}

#drop{
  padding: 6px;
  width: 84%; 
}

@media only screen and (min-width: 800px) {
  form {
    width: 600px;
  }
}