/*Reset CSS*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  background-color: black;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.title-animation {
  transform: translateY(100%);
  animation: animateTitle 1s ease forwards;
}

@keyframes animateTitle {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.container::before {
  content: "";
  display: block;
}

h1 {
  color: white;
  margin: 0;
  padding: 40px 0;
  font-weight: 600;
  text-align: center;
  font-size: 100px;
  line-height: 100px;
  background-repeat: no-repeat;
  background-size: 180%;
  background-position: 0% -50%;
  background-image: url("/img/title-background.jpg");
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}

span {
  color: white;
  text-align: center;
  font-size: 24px;
}