@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");


body {
  font-family: "Open Sans", sans-serif;;
  background: hsl(210, 36%, 96%);
  color: hsl(209, 61%, 16%);
  line-height: 1.5;
  font-size: 0.875rem;
}
h1 {
  letter-spacing: 0.1rem;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 5rem;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
}

.container {
  margin: auto;
  width: 50%;
  padding: 20px;
  text-align: center;
}

.btn {
  font-family: "Roboto", sans-serif;;
  text-transform: uppercase;
  background: transparent;
  color: #222;
  letter-spacing: 0.1rem;
  display: inline-block;
  font-weight: 700;
  transition: all 0.3s linear;
  border: 2px solid #222;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}
.btn:hover {
  color: #fff;
  background: #222;
}
.colorText {
  font-family: "Roboto", sans-serif;;
  text-transform: uppercase;
  background: transparent;
  color: #222;
  letter-spacing: 0.1rem;
  display: block;
  font-weight: 700;
  transition: all 0.3s linear;
  border-radius: 0.25rem;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}
