@font-face {
  font-family: "decalkregular";
  src: url("fonts/decalk-webfont.woff2") format("woff2"), url("fonts/decalk-webfont.woff") format("woff"), url("fonts/decalk-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "decalkbold";
  src: url("fonts/decalkbold-webfont.woff2") format("woff2"), url("fonts/decalkbold-webfont.woff") format("woff"), url("fonts/decalkbold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "onomatoshark";
  src: url("fonts/onomatoshark-webfont.woff2") format("woff2"), url("fonts/onomatoshark-webfont.woff") format("woff"), url("fonts/onomatoshark-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --basecolor: #A0807D;
  --headlinecolor: #EFF4F0;
  --darkblue: #023242;
  --lightblue: #14556F;
}

html {
  height: 100%;
  box-sizing: border-box;
  background: #2C2C2A;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: decalkregular, comic, sans-serif;
  font-size: 18px;
  color: #fff;
  background-image: linear-gradient(to bottom, rgba(158, 174, 177, 0) 100vw, rgb(158, 174, 177) 140vw, rgb(0, 22, 36)), url("assets/head.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

h1, h2 {
  font-family: "onomatoshark", comic, sans-serif;
  font-weight: normal;
  color: var(--headlinecolor);
  text-shadow: -1px 3px 0 var(--darkblue), 1px 3px 0 var(--darkblue);
  font-size: 10vw;
  line-height: 10vw;
  margin: 0;
}

h2 {
  font-size: 6vw;
  line-height: 6vw;
}

h3 {
  font-family: decalkbold, comic, sans-serif;
  font-weight: normal;
  font-size: 4vw;
  line-height: 4vw;
  margin-top: 0;
}

img, picture {
  display: block;
  width: 100%;
  height: auto;
}

#head {
  position: absolute;
  height: 91vw;
  width: 100%;
}

#bg, #head-k, #head-t {
  position: absolute;
}

.content {
  width: 80vw;
  margin: 0 auto;
  padding: 110vw 0 33vw 0;
  box-sizing: border-box;
}

.text {
  text-align: center;
  margin-bottom: 6em;
}
.text a, .text p a {
  color: #fff;
  text-decoration: none;
}
.text a:hover, .text p a:hover {
  color: var(--lightblue);
}

#albumdownload {
  background-color: var(--darkblue);
  border-radius: 15px;
  padding: 1em;
}
#albumdownload p {
  margin-top: 0;
}
#albumdownload:hover {
  background-color: var(--lightblue);
}
#albumdownload:hover p {
  color: white;
}

#player {
  margin: 6em auto;
  width: 450px;
}

#controlContainer {
  width: 100%;
  height: 30px;
  margin-top: 2em;
  display: flex;
  justify-content: center;
}

#progressContainer {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background-color: var(--darkblue);
  border-radius: 15px;
  overflow: hidden;
}

#playList {
  margin: 2em 0;
}

#playStop {
  position: absolute;
  top: 0;
  left: 0px;
  width: 30px;
  height: 30px;
}

#playStop svg {
  width: 100%;
  height: 100%;
  fill: var(--fill-color, white);
}

#progressBar {
  height: 100%;
  width: 0;
  border-radius: 15px;
  background-color: var(--lightblue);
  transition: width 0.2s;
}

#barInfo {
  position: absolute;
  top: 0;
  left: 35px;
  line-height: 26px;
}

.listItem {
  display: flex;
  height: 30px;
  width: 100%;
  border-radius: 15px;
  background: var(--darkblue);
  margin-bottom: 10px;
  cursor: pointer;
}
.listItem:hover {
  background: var(--lightblue);
}

.listItem.inactive {
  cursor: default;
}
.listItem.inactive .trackInfo {
  color: #666;
}
.listItem.inactive:hover {
  background: transparent;
}

.trackInfo {
  width: 100%;
  padding-left: 10px;
  line-height: 26px;
  text-align: left;
}

.downloadIcon {
  width: 20px;
  height: 20px;
  margin: 5px;
  cursor: grab;
}
.downloadIcon svg {
  width: 20px;
  height: 20px;
  fill: var(--fill-color, white);
}

#band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
  margin-top: 1em;
}
#band .member {
  flex-grow: 1;
}
#band .member h3 {
  margin-bottom: 0;
}
#band .member p {
  margin-top: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.links .link {
  max-width: 200px;
  margin: 0 1em 1em 0;
}
.links .link a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.links .link a svg {
  height: 20px;
  width: auto;
  max-width: 40px;
}
.links .link a svg path {
  fill: white;
}
.links .link a p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin: 0;
  padding-left: 0.5em;
}
.links .link a:hover {
  color: var(--lightblue);
  text-decoration: none;
}
.links .link a:hover svg path {
  fill: var(--lightblue);
}

#poster {
  max-width: 450px;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

#social {
  margin-bottom: 6em;
}

#foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
#foot .bottomlinks {
  position: absolute;
  left: 1em;
  bottom: 1em;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin: 0;
}
#foot .bottomlinks a, #foot .bottomlinks a:hover {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .content {
    display: block;
  }
  .text, #player {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */