@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");

body {
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-size: 50px;
  font-weight: 100;
  color: #7f7f7f;
}

 h1 span{
  font-weight: bold;
}
h2 {
  font-size: 38px;
  color: #5ec3ba;
}
.container {
  border-radius: 5px;
  background-image: linear-gradient(to right, #c7f8f4, #01a194);
  padding: 100px;
}

.form {
  color: #979797;
  padding: 80px 100px;
  width: 800px;
}

.box {
  background-color: white;
  max-width: 800px;
  height:750px;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(94, 94, 94, 0.8);
  display: grid;
  grid-template-columns: 50% 30% 40%;
  letter-spacing: 0.15em;
}

input[type="text"] {
  width: 400px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid #979797;
  margin: 10px 0 20px 0;
}

input[type="submit"] {
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  background-image: linear-gradient(#97eee7, #28c0b3);
  color: white;
  letter-spacing: 0.15em;
  border: none;
  width: 400px;
  height: 40px;
  border-radius: 5px;
  margin-top: 40px;
}

select {
  width: 405px;
  height: 45px;
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  color: #7f7f7f;
  letter-spacing: 0.15em;
  border-radius: 5px;
  border: 1px solid #979797;
  margin: 10px 0 0 0;
  appearance: none;
  background-image: url(/image/down_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 20px;
}
.quote {
  background-color: white;
  padding: 30px 10px 6px 0;
  margin-top: 200px;
  margin-left: 200px;
  color: #7f7f7f;
  font-size: 18px;
  min-width: 300px;
  max-height: 120px;
  text-align: right;
  line-height:25px;
 z-index: 10;
}

.quote p{
  letter-spacing: 0.15em;
}
.quote h3{
  color: #01a194;
  font-size: 15px;
}


img {
  /*margin:-100px 0 -100px 50px;*/
  border-radius: 0 10px 10px 0;
  height: 750px;
  margin-left: 50px;
}

@media(max-width: 780px){
  h1 {
    font-size: 30px;
    font-weight: 100;
    color: #7f7f7f;
  }
  
   h1 span{
    font-weight: bold;
  }
  h2 {
    font-size: 18px;
    color: #5ec3ba;
  }
  
  .box {
    background-color: white;
   width:500px;
   grid-template-columns: 800px 30% 40%;
  }

  .form {
    color: #979797;
    padding: 50px 50px;
    width: 800px;

  }
  
  input[type="text"] {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #979797;
    margin: 10px 0 10px 0;
  }

  .quote {
    background-color: white;
    padding: 30px 10px 6px 0;
    margin-top: 200px;
    color: #7f7f7f;
    font-size: 15px;
    min-width: 300px;
    max-height: 120px;
    text-align: right;
    line-height:25px;
   z-index: 10;
  }
  select {
    width: 300px;
    height: 40px;
  }
  input[type="submit"] {
    width: 300px;
    height: 40px;
  }

}

