body {
  font-family: Raleway, sans-serif;
  margin: 2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100svh;
  gap: 3em;
}

.logo {
  width: 250px;
  margin-bottom: 3em;
}

.title {
  font-family: DottiesVanilla, sans-serif;
  font-size: 2em;
  font-weight: 600;
}

.description {
  font-size: 1.2em;
  color: #666;
  max-width: 400px;
}

button, a.button-link {
  font-family: DottiesVanilla, sans-serif;
  display: inline-block;
  margin: 1em;
  padding: 1em 2em;
  font-size: 1.1em;
  border: none;
  background: #F26D70;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

button:hover, a.button-link:hover {
  background: #F94347;
}

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

.container.stores {
  flex-direction: row;
  gap: 1em;
}