@import url("https://fonts.googleapis.com/css?family=Poiret+One|Source+Sans+Pro");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-size: 110%;
  color: #000;
  font-family: "Source Sans Pro", sans-serif;
  background: linear-gradient(
    90deg,
    #fc44ed 0%,
    #f6ffb7 30%,
    #96efff 67%,
    #7cff75 100%
  );
  background-size: 1000%;
  animation: background 20s linear alternate infinite;
  width: 100%;
}

.main {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.title {
  font-family: "Poiret One", cursive;
  font-size: 4rem;
  margin-bottom: 0.5rem;
  width: 100%;
  text-align: center;
}

.sub-title {
  border-top: 0.1rem solid #000;
  padding: 1rem 4rem;
  text-align: center;
}

@keyframes background {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
