@-webkit-keyframes fade {
  0% {
    background-color: #000;
  }
  50% {
    background-color: #8ed0f4;
  }
  100% {
    background-color: #000;
  }
}
@keyframes fade {
  0% {
    background-color: #000;
  }
  50% {
    background-color: #8ed0f4;
  }
  100% {
    background-color: #000;
  }
}
body, html {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  background-color: #000000;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.25em;
  box-sizing: border-box;
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

a {
  color: #8ed0f4;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.margin-auto {
  margin: auto;
}

.box-shadow {
  box-shadow: 0px 0px 30px #f81a34;
}

.h100vh {
  height: 100vh;
}
@media screen and (max-width: 36em) {
  .h100vh {
    height: auto;
    padding-top: 10vh;
  }
}

.sans-serif {
  font-family: Helvetica, sans-serif;
  font-size: 12px;
}

img.album-cover {
  width: 600px;
}
@media screen and (max-width: 500px) {
  img.album-cover {
    width: 320px;
    height: auto;
    max-width: 100%;
  }
}

.border-left {
  border-left: 1px solid #fff;
}

@media screen and (min-width: 36em) {
  .rotate {
    border-top: 1px solid #8ed0f4;
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(270deg);
    transform: translate(-50%, -50%) rotate(270deg);
    white-space: nowrap;
    width: 100vh;
    height: 80px;
    padding: 1em;
  }
  .rotate a {
    flex: 1;
    text-align: center;
  }
}
@media screen and (max-width: 36em) {
  .rotate {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2em;
  }
  .rotate a {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 36em) {
  .links {
    bottom: 0px;
    left: 0px;
    top: auto;
  }
}

/*# sourceMappingURL=style.css.map */
