body {
  background-color: #19202D;
  font-family: "Inter";
  font-size: 18px;
  color: white;
}

a {
  cursor: pointer;
}

.header {
  padding: 0 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
.header .left, .header .center, .header .right {
  display: flex;
  align-items: center;
  height: 100%;
}

.header img {
  width: 150px;
  max-height: 100%;
}

.header .left {
  margin-right: auto;
}

.header .mid {
  z-index: 1;
  font-size: 18px;
}
.header .mid i {
  color: white;
  font-size: 36px;
  transition: 0.2s;
}
.header .mid i.fa-spotify:hover {
  color: #1db954;
  transition: 0.2s;
}

.header .right {
  width: 150px;
  margin-left: auto;
  font-size: 22px;
}
.header .right a {
  color: white;
  border-radius: 0.375rem;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.2s;
}
.header .right a:hover {
  background-color: rgba(211, 211, 211, 0.1);
  transition: 0.2s;
}

.text-animation-container {
  font-size: 52px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.cursor {
  font-weight: 100;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 200px;
}

.footer {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer .inner {
  text-align: center;
  width: 400px;
  padding: 20px 0;
  border-top: 2px solid white;
}
.footer .inner a {
  margin: 10px;
}

p.underheadline {
  max-width: 1200px;
  margin: 0 auto;
  animation: slideIn 0.8s forwards;
  font-size: 30px;
  font-weight: 600;
  margin-top: 30px;
}
p.title {
  max-width: 1200px;
  margin: 0 auto;
  animation: slideIn 1.3s forwards;
  font-size: 24px;
  font-weight: 400;
  margin-top: 15px;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */