@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;800&display=swap);
.ui-x {
  width: 100wh;
  height: 90vh;
  color: #fff;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.navbar {
  width: 35%;
  max-width: 450px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.navbar img {
  border-radius: 50px;
  width: 200px;
  height: 200px;
}
.navbar h1 {
  font-weight: 600;
  font-size: 30px;
  background: -webkit-linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar p {
  font-size: 16px;
  max-width: 240px;
  background: -webkit-linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main-logos {
  display: flex;
  align-items: center;
  padding: 24px;
}
.main-logos img {
  height: 40px;
}
.main h1 {
  font-size: 60px;
  font-weight: 600;
}
.main h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  color: #545454;
}

html {
  height: 100%;
}

body {
  background-color: #1d1c21;
  color: #f0f0f0;
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: "Nunito", sans-serif;
}

#app {
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #app {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.ui-x {
  width: 2px;
  height: 100%;
}
