@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: white;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.logo {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 300px;
  max-width: 400px;
}

.message {
  font-size: 24px;
  color: black;
  max-width: 90%;
  word-wrap: break-word;
  text-align: center;
}

@media (max-width: 600px) {
  .logo {
    max-width: 100vw;
  }
}
