html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.main-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 100vh;
  background-color: #fff;
}
@media (min-width: 768px) {
  .main-column {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .main-column {
    width: 33.333%;
  }
}

.title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 1rem;
}

button {
  background-color: #456778;
  color: #fff;
  border: 1px solid #000;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 1em;
  min-width: 200px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
button:hover {
  background-color: #324b58;
  color: #fff;
}/*# sourceMappingURL=index.css.map */