:root {
  --primary: #fff;
  --primary-alt: #e8e8e7;
  --primary-alt2: #b0b0b0;
  --secondary: #000;
  --accent: #D13F32;
  --accent2: #EDD70D;
  --xl: 80px;
  --l: 60px;
  --m: 40px;
  --s: 20px;
  --xs: 15px;
}
@media (max-width: 768px) {
  :root {
    --xl: 40px;
    --l: 30px;
    --m: 20px;
    --s: 10px;
    --xs: 8px;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6, p, a, em, strong, span, button, li, input {
  font-family: "microgramma-extended", sans-serif;
  font-weight: 500;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button,
[role=button] {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-alt);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
}

::selection {
  background-color: var(--primary);
  color: var(--secondary);
}

img::selection {
  background-color: color-mix(in hsl, var(--primary) 50%, transparent 50%);
}

#wpadminbar {
  display: none;
}

.button {
  color: var(--accent);
  border: solid 1px var(--accent);
  text-shadow: 1px 1px 1px transparent;
  border-radius: 1000px;
  padding: 0.5em 1.5em;
  background-color: transparent;
  background-image: linear-gradient(-120deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.5) 43%, transparent 47%);
  background-size: 1000% 1000%;
  background-position: 180% 50%;
  transition: background-color 0.3s, color 0.3s, text-shadow 0.3s;
}
.button:hover {
  background-color: var(--accent);
  color: var(--primary);
  text-shadow: 1px 1px 1px var(--accent);
  animation: shine 1.25s ease-in-out forwards;
}

@keyframes shine {
  0% {
    background-position: 180% 50%;
  }
  100% {
    background-position: 150% 50%;
  }
}
footer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--m) var(--l);
  pointer-events: none;
}
@media (max-height: 850px) {
  footer {
    position: relative;
    padding: var(--s) var(--m);
  }
}
footer a {
  display: block;
  width: auto;
  height: 60px;
  mask-size: contain;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  pointer-events: all;
  transform: scale(1);
  transition: all 0.3s;
}
footer a img {
  display: block;
  width: auto;
  height: 100%;
}
footer a:hover {
  transform: scale(1.02);
  opacity: 0.7 !important;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--xs);
}
.social-media li {
  display: grid;
  place-items: center;
}
.social-media li a {
  width: auto;
  height: 20px;
}
@media (max-width: 450px) {
  .social-media li a {
    height: 17px;
  }
}
.social-media li a svg {
  width: auto;
  height: 100%;
  fill: var(--accent);
  transition: fill 0.3s;
}
.social-media li a:hover svg {
  fill: var(--primary);
}

main {
  width: 100%;
  padding: var(--m);
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main video {
  width: 100%;
  max-width: 400px;
  height: auto;
}
main h1, main h2, main a, main p {
  line-height: 1em;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary);
}
main .artists {
  font-size: 23px;
  margin-bottom: -3vh;
}
main .track-name {
  font-size: 24px;
  color: var(--primary-alt);
  margin-bottom: 0.75em;
}
main .release-date {
  font-size: 16px;
  margin-bottom: 1.5em;
}
main a {
  font-size: 16px;
  color: transparent;
}
main .listen-link,
main .vinyl-link {
  margin-bottom: 1em;
}
@media (max-height: 1000px) {
  main video {
    max-width: max(38vh, 230px);
    max-width: max(33vh, 200px);
  }
}
@media (max-height: 850px) {
  main {
    height: calc(100vh - 100px);
    height: calc(100svh - 100px);
  }
}
@media (max-width: 768px) {
  main .artists {
    position: absolute;
    z-index: 2;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  main video {
    position: relative;
    z-index: 1;
  }
  main .track-name {
    margin-bottom: 1.5em;
  }
  main .watch-now {
    margin-bottom: auto;
  }
}
@media (max-width: 660px) {
  main .artists {
    font-size: 3.5vw;
  }
}
@media (max-width: 450px) {
  main .track-name {
    font-size: 21px;
  }
  main .release-date {
    font-size: 14px;
  }
  main a {
    font-size: 14px;
  }
}
@media (max-width: 345px) {
  main .track-name {
    font-size: 6vw;
  }
}/*# sourceMappingURL=style.css.map */