* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
}

.polygon {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.polygon > svg {
  width: 100%;
  height: 100%;
}

.page-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.content-container .image-container {
  width: 90%;
  max-width: 310px;
  height: 70%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.content-container .image-container img {
  width: 100%;
  height: 100%;
  max-height: 30vh;
  object-fit: contain;
  transition: width 0.3s ease-in-out;
}

.footer {
  height: 30%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.coming-soon {
  gap: 2rem;
  color: #02142d;
  font-size: 0.5rem;
  letter-spacing: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contact {
  width: 100%;
  max-width: 323px;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}

.contact > span {
  font-size: 0.5rem;
}

@media (min-width: 440px) {
  .content-container .image-container {
    max-width: none;
    width: 420px;
  }
  .coming-soon,
  .footer > .contact > span {
    font-size: 0.7rem;
  }
}
@media (min-width: 640px) {
  .content-container .image-container {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .coming-soon {
    font-size: 1rem;
  }
  .footer > .contact > span {
    font-size: auto;
  }
}

@media (min-width: 1280px) {
  .content-container .image-container {
    width: 550px;
  }
  .coming-soon {
    font-size: 1.5rem;
  }
}
@media (min-width: 1536px) {
  .coming-soon {
    font-size: 1.7rem;
  }
}
