.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  filter: opacity(60%);
  z-index: 0;
}

.video-container video{
  min-width: 100%;
  min-height: 100%;

  width: auto;
  height: auto;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body {
  margin: 0px;
  background-image: url("media/images/meander-background-pattern.png");
}

.full-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  min-width: 100%;
  min-height: 100%;

  width: 100%;
  height: 100%;

  font-family: 'MeyrinRegular';
  src: url("https://fontlibrary.org/en/face/meyrin")
    format('truetype');
  font-weight: bolder;
  font-style: normal;
}

.center-box {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 92%;
  .box-contents {
    align-items: flex-start;
  }
}

.center-box div {
  width: 100%;
}

.artist-name {
  display: flex;
  flex-direction: column;
}

.artist-name p {
  width: 90%;
  margin: auto;
  margin-bottom: 20px;
}

p {
  padding-left: 6%;
  padding-right: 2%;
}

.song-name {
  padding-left: 2%;
  padding-right: 2%;
}

.links {
  display: flex;
  flex-direction: column;
  margin-top: 2%;

  a {
    color: black;
  }
}

@media (min-width: 320px) {

  /* .full-container { */
    /* font-family: monospace; */
    /* font-weight: normal; */
    /* font-style: normal; */
  /* } */

  .center-box div {
    border: 6px solid rgb(0, 0, 0);
  }

  p {

    font-size: 85px;
  }

  .song-name {
    font-size: 95px;
  }

  .artist-name p {
    font-size: 150px;
  }

  .links {
    font-size: 60px;
  }
}

@media (min-width: 1281px) {

  .center-box div {
    border: 3px solid rgb(0, 0, 0);
    width: 35%;
  }

  p {
    font-size: 25px;
  }
  .artist-name p {
    font-size: 45px
  }
  .song-name {
    font-size: 30px;
  }
  .links {
    font-size: 25px;
  }
}