body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: arial, sans-serif;
  background-color: #261c42;
  overflow: hidden;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}

.logo {
  width: calc(80% - 40px);
  max-width: calc(391px - 40px);
  height: auto;
  max-height: 30vh;
}

@media (width <= 768px) {
  .text {
    font-size: 6vw;
  }
}
@media (width <= 480px) {
  .logo {
    width: calc(90% - 40px);
    max-height: 40vh;
  }
}
@media (width >= 768px) {
  .logo {
    width: calc(160% - 40px);
    max-width: calc(782px - 40px);
    max-height: 60vh;
  }
}