@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%),
    linear-gradient(203deg, rgba(47, 47, 47, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url(./images/background2.jpg);
  background-size: cover;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
  text-align: center;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 300px;
  max-width: 70%;
  animation: animateLogo 2s ease;
}

.title {
  font-size: 60px;
  margin-top: 50px;
  animation: slideTitle 2s ease;
  font-weight: 500;
}

.subtitle {
  font-size: 30px;
  font-weight: 400;
  margin-top: 0;
  animation: slideSubtitle 3s ease;
}

@keyframes animateLogo {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideTitle {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideSubtitle {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  40% {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
