/* CSS files add styling rules to your content */

body {
  font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  margin: 2em;
}

h1 {
  font-style: italic;
  color: #373fff;
}

textarea {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  width: 80vw;
  height: 30vh;
  border: 1px solid lightgrey;
  border-radius: 3px;
  font-size: 16px;
}

button {
  font-size: 16px;
  border-radius: 3px;
  background-color: lightgrey;
  border: 1px solid grey;
  box-shadow: 2px 2px teal;
  cursor: pointer;
  margin: 5px;
}

button:hover {
  background-color: yellow;
}

button:active {
  box-shadow: none;
}