@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

html,
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-smooth: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  max-height: -webkit-fill-available;
  background-color: white;
}

.logo {
  display: flex;
  width: 80vw;
  max-width: 440px;
  height: auto;
}

.logo img {
  width: 100%;
  height: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  margin: 16px;
  font-size: 16px;
  font-weight: 200;
  color: #0a0a0a;
}
