body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  background: transparent;
  background-size: cover;
  --safe-area-inset-top: env(safe-area-inset-top, 0);
  --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
}

#root {
  position: relative;
  min-height: 100vh;
  width: 100%;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#front-page {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: var(--safe-area-inset-bottom);
  overflow: auto;
}

#front-page img {
  object-fit: contain;
  max-width: 100%;
}

#front-page .logo {
  text-align: center;
}

#front-page .logo img {
  height: 3.5rem;
}

#front-page .img-master {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#front-page .img-master img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

#front-page .bottom-text {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

#front-page .bottom-text img {
  width: 70%;
}