@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

.welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #18191e;

  transform: scale(0.9);
  opacity: 0;
  pointer-events: none;

  /**/
  -webkit-transition: all 0.7s cubic-bezier(0.75, 0, 0.125, 1);
  -moz-transition: all 0.7s cubic-bezier(0.75, 0, 0.125, 1);
  -ms-transition: all 0.7s cubic-bezier(0.75, 0, 0.125, 1);
  -o-transition: all 0.7s cubic-bezier(0.75, 0, 0.125, 1);
  transition: all 0.7s cubic-bezier(0.75, 0, 0.125, 1);
}

.welcome-screen.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: painted;
}

.welcome-screen .content-wrapper {
  position: relative;
  width: 80%;
  max-width: 420px;
  height: auto;
  top: 10%;
  margin-bottom: 100px;
}

.main-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.main-title-wrapper img {
  width: 140px;
}

.main-title-wrapper .main-title {
  font-size: 2.5rem;
  width: 100%;
  font-style: normal;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.main-title-wrapper .subtitle {
  font-size: 0.9rem;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  background-color: red;
}

.title-wrapper img {
  height: 20px;
}

.title-wrapper .logo {
  height: 40px;
}

.spacer-20 {
  position: relative;
  overflow: hidden;
  clear: both;
  float: left;
  width: 100%;
  height: 15px;
}

.welcome-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  margin-top: 50px;
}

.welcome-footer .viewport {
  width: 90%;
  max-width: 1200px;
}
.welcome-footer .viewport p {
  text-align: center;
  color: #8b8c94;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 768px) {
  .main-title-wrapper .main-title {
    font-size: 1.6rem;
  }

  .welcome-screen .content-wrapper {
    position: relative;
    width: 60%;
    max-width: 450px;
  }

  .main-title {
    font-size: 12px;
  }

  .welcome-screen .content-wrapper {
    width: 75%;
    max-width: 600px;
  }
}
