html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.centerXY {
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.centerX, .footer__wrapper {
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.centerY {
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "liberation_monoregular";
  src: url("../../fonts/LiberationMono-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html, body {
  font-family: "liberation_monoregular", monospace;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

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

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

*::selection {
  background: rgb(130, 62, 255);
  color: #000;
}

*::-moz-selection {
  background: rgb(130, 62, 255);
  color: #000;
}

*::-webkit-scrollbar {
  width: 3px;
}

*::-webkit-scrollbar-track {
  background: #000;
}

*::-webkit-scrollbar-thumb {
  background: #FFF;
  border: none;
}

html, body, main {
  width: 100%;
  height: auto;
  background-color: #000;
  color: #FFF;
  scroll-behavior: smooth;
}

button {
  background-color: inherit;
  border: none;
  box-shadow: none;
  outline: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
}
button:active {
  outline: none;
}

.header__top-wrapper {
  display: block;
  margin: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
}
.header__logo-wrapper {
  width: calc(100% - 40px);
  margin: 0 20px;
}
.header__logo {
  display: block;
  width: 100%;
  height: auto;
}
.header__bottom-wrapper {
  width: calc(100% - 40px);
  padding: 20px;
  border-bottom: 1px solid #FFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #000;
}
.header__letter-wrapper {
  height: 60px;
}
.header__letter {
  display: block;
  height: 100%;
  width: auto;
}
.header__center-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  flex-direction: row;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.header__button {
  display: inline-block;
  padding: 10px 0;
  border-radius: 30px;
  transition: background-color 0.2s ease-in-out;
  background-color: rgb(130, 62, 255);
  border: 1px solid rgb(130, 62, 255);
  margin: 10px 20px;
  width: 200px;
}
.header__button.active {
  background-color: transparent;
  pointer-events: none;
}
@media (hover: hover) {
  .header__button:hover {
    background-color: transparent;
  }
}
.header__button:active {
  background-color: transparent;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .header__letter-wrapper {
    display: none;
  }
  .header__letter {
    display: none;
  }
  .header__center-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
  .header__button {
    display: block;
    margin: 10px 0;
    width: 100%;
  }
  .header__button:last-child {
    margin-top: 0;
  }
}
.home__container {
  width: 100%;
  position: relative;
}

.releases__container {
  width: calc(100% - 40px);
  margin: 0 20px;
  margin-bottom: 80px;
  display: none;
}
.releases__container.active {
  display: block;
}
.releases__release-wrapper {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.releases__info-wrapper, .releases__artwork-wrapper {
  width: calc(50% - 10px);
}
.releases__info-wrapper {
  margin-right: 10px;
}
.releases__artwork-wrapper {
  margin-left: 10px;
}
.releases__info-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFF;
  position: sticky;
  top: 120px;
}
.releases__bandcamp {
  margin-top: 20px;
}
.releases__image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.mixes__container {
  width: calc(100% - 40px);
  margin: 0 20px;
  margin-bottom: 80px;
  display: none;
}
.mixes__container.active {
  display: block;
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .releases__container {
    margin-bottom: 120px;
  }
  .releases__release-wrapper {
    display: block;
  }
  .releases__info-wrapper, .releases__artwork-wrapper {
    width: 100%;
  }
  .releases__info-wrapper {
    margin-right: 0;
  }
  .releases__artwork-wrapper {
    margin-left: 0;
  }
  .releases__info-container {
    display: block;
    padding-bottom: 20px;
    border-bottom: none;
    position: static;
    top: auto;
  }
  .releases__info-container span {
    display: block;
    margin-bottom: 5px;
  }
  .releases__bandcamp {
    margin: 10px 0;
  }
}
.footer__wrapper {
  position: fixed;
  bottom: 20px;
  display: flex;
  justify-content: center;
  background-color: rgb(130, 62, 255);
  border-radius: 30px;
  transition: background-color 0.2s ease-in-out;
  border: 1px solid rgb(130, 62, 255);
}
@media (hover: hover) {
  .footer__wrapper:hover {
    background-color: transparent;
  }
}
.footer__wrapper:active {
  background-color: transparent;
}
.footer__link {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .footer__link:hover {
    background-color: rgb(130, 62, 255);
  }
}
.footer__link:active {
  background-color: rgb(130, 62, 255);
}

@media screen and (max-width: 750px) and (min-width: 1px) {
  .footer__wrapper {
    position: fixed;
    bottom: 20px;
    display: block;
    width: calc(100% - 40px);
    justify-content: center;
    background-color: transparent;
    border-radius: 30px;
    transition: background-color 0.2s ease-in-out;
    border: none;
  }
}
@media screen and (max-width: 750px) and (min-width: 1px) and (hover: hover) {
  .footer__wrapper:hover {
    background-color: transparent;
  }
}
@media screen and (max-width: 750px) and (min-width: 1px) {
  .footer__wrapper:active {
    background-color: transparent;
  }
}
@media screen and (max-width: 750px) and (min-width: 1px) {
  .footer__link {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 30px;
    transition: background-color 0.2s ease-in-out;
    background-color: rgb(130, 62, 255);
  }
}
.mailchimp__title {
  display: block;
  margin-bottom: 5px;
}
.mailchimp__input {
  border-radius: 0;
  background-color: rgb(130, 62, 255);
  color: #FFF;
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 3px 5px;
  margin-bottom: 5px;
  text-transform: inherit;
}
.mailchimp__input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #FFF;
  opacity: 1; /* Firefox */
}
.mailchimp__submit {
  display: block;
  padding: 3px 5px;
  margin: 0;
  border: 1px solid rgb(130, 62, 255);
  background-color: rgb(130, 62, 255);
  box-shadow: none;
  outline: none;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  width: 100%;
  cursor: pointer;
  text-transform: inherit;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .mailchimp__submit:hover {
    background-color: transparent;
  }
}
.mailchimp__submit:active {
  background-color: transparent;
}

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