body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: black;
  background-image: url('/assets/ellipse.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.container {
  margin: auto;
  text-align: center;
  padding: 2rem;
}
.logo {
  width: 120px;
  margin-bottom: 1rem;
}
.badges {
  display: flex;
}
.badges a {
  display: block;
  margin: 0.5rem;
}
.badges img {
  height: 40px;
}
footer {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  left: 0;
  font-size: 0.9rem;
}
footer {
  gap: 6rem;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 1rem;
  }
}
footer a {
  color: white;
  text-decoration: underline;
}
