@import "/product/static/style/editorjs-html-content2.css";

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  background: var(--foundation-primary-primary, #3c83ad);
  overflow: hidden;
  scrollbar-width: 0;
}

#cover-page {
  font-family: Poppins;
  width: 100vw;
  height: 100vh;
  background: url("/product/static/image/utility/testinvite-loading-background.png") no-repeat center;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: space-around;

  #progress {
    animation: rotate 2s linear infinite;
    background: transparent;
    margin: 20px;
  }

  #header {
    color: var(--foundation-white-white, #fff);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  #paragraph {
    color: var(--foundation-white-white, #fff);
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  #container {
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  #wait {
    color: var(--foundation-white-white, #fff);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .text-to-display-in-long-waiting {
    display: none;
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 2px;
  }

  .main-img {
    width: 300px;
    height: 72px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  #cover-page {
    #header {
      font-size: 34px;
    }
    #paragraph {
      font-size: 20px;
    }
    #wait {
      font-size: 18px;
    }
  }
}
