@font-face {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Canela-Light-Trial.woff2") format("woff2"),
    url("../fonts/Canela-Light-Trial.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Lato-Black.woff2") format("woff2"),
    url("../fonts/Lato-Black.woff") format("woff");
}

body {
  background-color: #faf2de;
  max-width: 690px;
  margin: 25px auto 0;
  color: #001432;
  font-family: Canela;
  font-weight: 300;
}

main {
  padding: 0 20px;
  border-radius: 8px;
  max-width: 690px;
  margin: 0 auto;
  font-size: 1.5em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 690px) {
  main {
    font-size: 1.2em;
  }
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logo {
  height: auto;
  padding: 0 0.5em;
  margin: 0 auto;
  width: 290px;
  max-width: calc(100% - 1em);
  display: block;
  text-align: center;
}

a.button {
  background-color: rgba(0, 20, 50, 0.992);
  border-radius: 1000px;
  transition: color 0.25s, background 0.25s, border 0.25s;
  min-width: 12rem;
  text-align: center;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
  border: 0;
  color: #fff;
  font-family: Lato, sans-serif;
  align-self: flex-start;
  text-decoration: none;
  cursor: pointer;
}
a.button:hover {
  background-color: #0014321a;
  color: #001432;
}
