:root {
  --color-site-background: #000000;
  --color-text: #ffffff;
  --color-text-link: #629aa9;
  --color-text-link-rgb: 98, 154, 169;
  --color-text-link-contrast: #000000;
  --color-text-link-contrast-rgb: 0, 0, 0;
  --color-text-link-shade: #568895;
  --color-text-link-tint: #72a4b2;
  --color-gradient-base: #629aa9;
  --color-blob-pine-green: #2d5d58;
  --color-blob-signal-green: #20794f;
  --ig-icon-size: 24px;
}

html,
body {
  box-sizing: border-box;
  background-color: var(--color-site-background);
  color: var(--color-text);
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

div {
  box-sizing: border-box;
}

header {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  padding: 24px 28px 54px;
}
@media (min-width: 1200px) {
  header {
    padding: 54px 44px 84px;
  }
}
header .has-header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  white-space: nowrap;
  min-width: 140px;
}
header .has-header-logo .is-logo {
  width: 50px;
  height: 50px;
}
header .has-social-link .platform-icon {
  width: var(--ig-icon-size);
  height: var(--ig-icon-size);
}
header .has-social-link .platform-icon svg {
  width: 100%;
  height: 100%;
}
header .has-social-link .platform-icon img {
  width: 100%;
  height: 100%;
}

main {
  display: flex;
  flex: 1 0 auto;
  z-index: 1;
  position: relative;
  padding: 0 28px;
}
@media (min-width: 1200px) {
  main {
    padding: 0 44px;
  }
}
main.for-home-page {
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  main.for-home-page {
    justify-content: flex-start;
  }
}
main.for-home-page .player-wrapper {
  display: flex;
  flex-direction: column;
}
main.for-home-page .player-wrapper .has-player-mobile {
  position: relative;
  display: block;
}
main.for-home-page .player-wrapper .has-player-desktop {
  position: relative;
  display: none;
}
main.for-home-page .player-wrapper .has-text {
  font-size: 14px;
  color: var(--color-text-link);
  margin-top: 20px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  main.for-home-page .player-wrapper {
    padding-left: 20px;
  }
  main.for-home-page .player-wrapper .has-player-mobile {
    display: none;
  }
  main.for-home-page .player-wrapper .has-player-desktop {
    display: block;
  }
}
main.for-links-page {
  padding-top: 34px;
}
@media (min-width: 1200px) {
  main.for-links-page {
    padding-top: 0;
  }
}
main.for-links-page .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Work Sans", sans-serif;
}
main.for-links-page .content-wrapper > .is-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main.for-links-page .content-wrapper > .is-row.for-izsvemira {
  gap: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  main.for-links-page .content-wrapper > .is-row.for-izsvemira {
    margin-bottom: 70px;
  }
}
main.for-links-page .content-wrapper > .is-row.for-izsvemira .is-logo {
  width: 50px;
  height: 50px;
}
main.for-links-page .content-wrapper > .is-row.for-bandcamp {
  gap: 20px;
  margin-bottom: 58px;
}
main.for-links-page .content-wrapper > .is-row.for-bandcamp .is-bandcamp-logo {
  width: 100px;
  height: 100px;
}
main.for-links-page .content-wrapper > .is-row.for-bandcamp .is-text {
  color: var(--color-text-link);
  font-weight: 14px;
}
main.for-links-page .content-wrapper > .is-row.for-platforms {
  margin-bottom: 40px;
  gap: 20px;
  font-size: 14px;
}
main.for-links-page .content-wrapper > .is-row.for-platforms p {
  margin: 0;
}
main.for-links-page .content-wrapper > .is-row.for-platforms .platform-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
main.for-links-page .content-wrapper > .is-row.for-platforms .platform-links .platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 60px;
  width: 320px;
  font-size: 14px;
  border-radius: 30px;
  gap: 10px;
  background-color: #000000;
  color: #ffffff;
}
main.for-links-page .content-wrapper > .is-row.for-platforms .platform-links .platform-link .platform-icon {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
main.for-links-page .content-wrapper > .is-row.for-social a img {
  width: var(--ig-icon-size);
  height: var(--ig-icon-size);
}

footer {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
  padding: 24px 28px 54px;
}
@media (min-width: 1200px) {
  footer {
    padding: 54px 44px 84px;
  }
}
footer.for-home-page .platform-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
footer.for-home-page .platform-links .platform-link {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
footer.for-home-page .platform-links .platform-link .platform-icon {
  width: 22px;
  height: 22px;
}
footer.for-home-page .contact-link {
  margin-bottom: 3px;
  color: var(--color-text-link);
  cursor: pointer;
}
footer.for-home-page .contact-link:hover {
  color: var(--color-text-link-tint);
}
footer.for-links-page {
  justify-content: center;
  align-items: center;
}
footer.for-links-page .contact-link {
  color: var(--color-text-link);
  margin: 60px 0;
}
@media (min-width: 1200px) {
  footer.for-links-page {
    margin-top: auto;
  }
  footer.for-links-page .contact-link {
    margin: 0px 0 40px;
  }
}

.bg-art-wrapper {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}
.bg-art-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-art-wrapper img.image-first {
  opacity: 0.3;
  mix-blend-mode: color-dodge;
  filter: contrast(170%);
}
.bg-art-wrapper img.image-second {
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.1;
}
.bg-art-wrapper img.image-third {
  z-index: 3;
  mix-blend-mode: color-dodge;
  opacity: 0.1;
  filter: contrast(900%);
}
.bg-art-wrapper .is-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
  background: #629aa9;
  background: radial-gradient(circle, rgb(98, 154, 169) 0%, rgb(64, 100, 110) 50%, rgb(28, 43, 48) 90%);
}
@media (min-width: 1200px) {
  .bg-art-wrapper .is-gradient {
    background: radial-gradient(circle, rgb(98, 154, 169) 0%, rgb(37, 57, 63) 50%, rgb(18, 27, 31) 90%);
  }
}

/* #region Blobs */
.blob-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}
.blob-container .blob-wrapper {
  position: relative;
  width: 100%;
  max-width: 32rem;
}
.blob-container .blob-wrapper .blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
  opacity: 0.7;
  animation: blob 7s infinite;
}
.blob-container .blob-wrapper .blob.blob-purple {
  top: 0;
  left: -1rem;
  background-color: var(--color-blob-pine-green);
}
.blob-container .blob-wrapper .blob.blob-yellow {
  top: 0;
  right: 2rem;
  background-color: var(--color-blob-pine-green);
  animation-delay: 2s;
}
.blob-container .blob-wrapper .blob.blob-pink {
  bottom: -6rem;
  left: 5rem;
  background-color: var(--color-blob-pine-green);
  animation-delay: 4s;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
/* #endregion Blobs */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: transparent;
  color: #ffffff;
  padding: 10px;
  text-decoration: none;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.skip-link:focus {
  display: block;
}
.skip-link:hover {
  opacity: 1;
}/*# sourceMappingURL=styles.css.map */