/*
  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: #000000;
}

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

p {
  color: rgb(225, 129, 3);
  font-size: 4vw;
}