/*
  CSS RESET
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;
}

a {
  color: black;
  text-decoration: none;
}




/*
  STYLES
*/

@font-face {
  font-family: "squatina";
  src: 
  url("../fonts/Squatina-Regular.otf") format("otf"),
  url("../fonts/Squatina-Regular.woff") format("woff"),
  url("../fonts/Squatina-Regular.woff2") format("woff2");
}

body {
  font-family: "squatina";
  background-color: black;
}


a {
  color: rgb(225, 129, 3);
}

a:first-child {
  font-size: 38vw;
  margin-bottom: 7%;
}

a:nth-child(2) {
  font-size: 14vw;
  margin-bottom: 7%;
}

a:nth-child(3) {
  font-size: 38vw;
  margin-bottom: 7%;
}

a:nth-child(4) {
  font-size: 17vw;
  margin-bottom: 7%;
}

a:nth-child(5) {
  font-size: 26vw;
  margin-bottom: 7%;
}

a:nth-child(6) {
  font-size: 36vw;
  margin-bottom: 7%;
}

a:nth-child(7) {
  font-size: 25vw;
  margin-bottom: 7%;
}

a:nth-child(8) {
  font-size: 6vw;
  margin-bottom: 7%;
}

a:nth-child(9) {
  font-size: 16vw;
  margin-bottom: 7%;
}

a:nth-child(10) {
  font-size: 10vw;
  margin-bottom: 0%;
}

a:nth-child(11) {
  font-size: 10vw;
  margin-bottom: 17%;
}

a:last-child {
  width: 7%;
  height: auto;
}


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

.songtitel a {
  display: inline-block;
  animation: slide 2s ease-in-out infinite alternate;
}

/* Animation für Hin-und-Her-Bewegung */
@keyframes slide {
  0% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(5px);
  }
}