body {
    margin:0;
    padding:0;
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-color:#020719;
}
.coming-soon-container .wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
}

.coming-soon-container .wrapper h1 {
    font-size: 38px;
    color: white;
    font-weight: 700;
    font-style: italic;
    margin-top: auto;
    margin-bottom: auto;
    transform: translateY(-100%);
}

.coming-soon-container .wrapper img {
max-width: 250px;
    margin-top: 30px;
}

@media screen and (max-width:565px) {
    .coming-soon-container .wrapper h1 {
max-width: 250px;
        font-size: 36px;
    }
    .coming-soon-container .wrapper img {
        max-width: 260px;
    }
}

.coming-soon-container .dot {
  opacity: 0;
  animation: blink 2s infinite;
}

.coming-soon-container .dot.dot--one {
  animation-delay: 0s;
}
.coming-soon-container .dot.dot--two {
  animation-delay: 0.3s;
}
.coming-soon-container .dot.dot--three {
  animation-delay: 0.6s;
}

@keyframes blink {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}