* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  background-image: url("/images/background.png");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 30vh;

  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}

main {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img.logo {
  margin-bottom: 8rem;
  width: 320px;
}

a {
  text-decoration: none;
}

a+a {
  margin-top: 1rem;
}

a.link,
a.get-app {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 20rem;
  color: #fafafa;
  background-color: #382F83;
  border-radius: 2rem;
  font-weight: 700;
  transition: 500ms;
}

a.get-app:hover {
  background-color: #2a226d;
}

a.link {
  background-color: transparent;
  border: 2px solid #382F83;
  color: #382F83;
}