@font-face {
  font-display: swap;
  font-family: "Qwitcher Grypen";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/qwitcher-grypen-v6-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lora-v35-latin-regular.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  filter: blur(50px);
  animation: unblur 1.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

body {
  font-family: "Lora", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1d171a;
  background-image: url("../img/bg.jpg");
  background-size: 50%;
}

section {
  padding-bottom: 2em;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

p {
  max-width: 60ch;
  margin-bottom: 0.75em;
}

a {
  text-decoration: none;
  font-weight: 600;
  color: #00a86b;
  transition: color 0.3s ease;
}
a:hover {
  color: #f25f5c;
}

.title {
  font-family: "Qwitcher Grypen", serif;
  font-weight: 700;
  text-align: center;
}
.title--l {
  font-size: 4em;
}
.title--m {
  font-size: 4em;
}
.title--s {
  font-family: "Lora", sans-serif;
  text-align: left;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.squiggle {
  height: 250px;
  width: 100%;
  margin: -70px 0;
  background-image: url(../img/deco.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
}
.squiggle--black {
  background-image: url(../img/deco-black.svg);
}

.arrow {
  width: 4em;
  height: 4em;
  margin-top: 4em;
}

.nav,
.footer {
  background: #1d171a;
  color: #fcfafa;
  padding: 0.75em;
}
.nav__ul,
.footer__ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
}
.nav a,
.footer a {
  color: #fcfafa;
}
.nav a:hover,
.footer a:hover {
  color: #ffe84c;
}

.home {
  background-image: url("../img/hero-mobile.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fcfafa;
  align-content: center;
  justify-items: center;
  min-height: 100vh;
}
.home a {
  color: #fcfafa;
}
.home a:hover {
  color: #ffe84c;
}

.social ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.album__tracklist {
  margin-left: 2em;
}
.album__tracklist .playing {
  color: #f25f5c;
}
.album__tracklist .playing::after {
  content: "";
  display: inline-block;
  height: 23px;
  width: 23px;
  margin-left: 0.75em;
  vertical-align: middle;
  padding-bottom: 5px;
  background-image: url(../img/play.svg);
  background-size: contain;
  background-repeat: no-repeat;
  animation: beat-mini 1s infinite;
}
.album__flex {
  background-color: #1d171a;
  color: #fcfafa;
  padding: 2em;
  padding-top: 0.75em;
  padding-bottom: 4em;
}

.discography {
  background-color: #1d171a;
  color: #fcfafa;
}
.discography__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.discography a {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.discography a::before {
  content: "";
  width: 150px;
  height: 150px;
  margin-right: 1rem;
  background-size: cover;
  background-position: center;
}
.discography a[id*=vagrancy]::before {
  background-image: url(../img/vagrancy.webp);
}
.discography a[id*=noano]::before {
  background-image: url(../img/noano.webp);
}
.discography a[id*=ayashi]::before {
  background-image: url(../img/ayashi.webp);
}
.discography a[id*=catra]::before {
  background-image: url(../img/catra.webp);
}
.discography a[id*=wokashi]::before {
  background-image: url(../img/wokashi.webp);
}
.discography a.playing::before {
  box-shadow: #fcfafa 0 0 23px;
  animation: beat 1s infinite;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes beat-mini {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes unblur {
  0% {
    filter: blur(50px);
  }
  100% {
    filter: blur(0);
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 20px;
  }
  .home {
    background-image: url("../img/hero-desktop.webp");
  }
  .title--l {
    font-size: 11.3em;
  }
  .title--m {
    font-size: 4em;
  }
  .title--s {
    font-size: 2em;
  }
  .album__info {
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  .album__flex {
    display: flex;
    justify-content: space-between;
    margin-left: 4em;
    margin-right: 4em;
  }
}/*# sourceMappingURL=style.css.map */