@font-face {
  font-family: plau-regular;
  src: url('../fonts/plau/PlauTest-Regular.otf') format('opentype');
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: plau-regular;
  background: transparent;
  color: white;
  height: 100%;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  background-image: url('../images/background.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem;
  gap: 2rem;
}

.content {
  max-width: 100%;
}

.computer-image {
  display: none;
}

@media (min-width: 1230px) {
  .main-container {
    padding: 4rem;
  }

  .content {
    max-width: 24rem;
  }

  .computer-image {
    max-width: 43rem;
    min-width: 0;
    display: block;
  }
}
