/* index.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200&family=Roboto:wght@100&display=swap");
body {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-family: "Inter", sans-serif;
}

span {
  color: #E54C4C;
}

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

.container .content {
  text-align: center;
}

.container img {
  width: 50%;
  display: block;
  margin: 0 auto;
}

footer {
  text-align: center;
}

footer a {
  color: black;
}

@media only screen and (max-width: 600px) {
  .container {
    height: 80vh;
  }
}/*# sourceMappingURL=index.css.map */