* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Helvetica Neue', Arial,
    sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  background-color: white;
}

.logo {
  width: 40rem;
  height: auto;
}

.hidden {
  display: none;
}

@media screen and (max-width: 1024px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }

  .logo {
    width: 30rem;
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }

  .logo {
    width: 20rem;
    height: auto;
  }

  body {
    width: 100vw;
  }
}
