:root {
  --gray-color: #44464F;
  --bg-color: #FFF8F7;
}

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box !important;
  overflow-y: scroll;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  font-family: 'Roboto', sans-serif;
}

.header {
  --min-height: 100vh;
  display: flex;
  flex-direction: column;
  min-height: var(--min-height);
  overflow: hidden;
}

@supports (--min-height:100svh) {
  .header {
    --min-height: 100svh;
  }
}

.main-header {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 8px 16px 16px;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 32px;
  margin: 16px 0 0;
  overflow-wrap: anywhere;
  text-align: center;
  font-weight: 500;
}

p {
  text-align: center;
  color: var(--gray-color);
  line-height: 24px;
  font-size: 16px;
  margin: 0;
  font-weight: 300;
}

.hero-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.scene {
  max-width: 336px;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.flutter-loader {
  display: none;
}


@media (min-width: 768px) {
  .scene {
    max-width: 400px;
  }
}
