body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #20209e;
  overflow: hidden;
}

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

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

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

.text {
  width: 100%;
  text-align: center;
  color: white;
  font-size: 4vw;
  font-family: "Avenir Next", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  word-wrap: break-word;
}

@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: 742px;
    max-height: 60vh;
  }
}