
/* Box Model Hack */
*{
    box-sizing: border-box;
    font-family: Questrial;
  }
  
html{
  font-size: 62.5%;
}
  /******************************************
  /* LAYOUT
  /*******************************************/
  body{
    background-color: rgb(57, 142, 184);
    color: black;
    text-align: center;
  }

  h1{
    font-size: 4rem;
    color: white;
  }

  h3{
    font-size: 2.5rem;
  }

  h2{
    font-size: 2.5rem;
  }

   .searchBar{
    background-color: transparent;
    border: 1px solid white;
    border-radius: 30px 0px 0px 30px;
    width: 50%;
    height: 30px;
}

.button{
  background-color: white;
  color: black;
  border: 1px solid white;
  border-radius: 0px 30px 30px 0px;
  height: 30px;
  width: 7%;
  font-size: 1.7rem;
}

input{
  font-size: 1.7rem;
}

.textArea{
  border-radius: 30px;
  width: 65%;
  height: 500px;
  border: 1px solid white;
  margin: auto;
  margin-top: 30px;
  padding: 10px;
}
