@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans&family=Tiny5&display=swap");
:root {
  --primary-bg: #CFF8FF;
  --secondary-bg: #ffd8ea;
  --main-text: #292A68;
  --bubble-shade1: #88B8EA;
  --bubble-shade2: #6988BF;
  --icon-highlight: #C1B0E1;
  --drop-shadow: #C1B0E1;
}

.dark-mode {
  --primary-bg: #694D75;
  --secondary-bg: #4c4166;
  --main-text: #ffbafc;
  --bubble-shade1: #573970;
  --bubble-shade2: #352b50;
  --icon-highlight: #533D81;
  --drop-shadow: #41366b;
}

body, html {
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100vw;
  min-width: 330px;
  max-height: 100vh;
  max-width: 100vw;
}
body svg, html svg {
  fill: var(--main-text);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: max(min(3.5vw, 3.5vh), 17px);
  font-family: "Tiny5", sans-serif;
  color: var(--main-text);
  background-color: var(--secondary-bg);
}

p {
  margin: 0.5em 0;
}

h1 {
  font-size: max(min(8vw, 8vh), 40px);
}

h2, h3 {
  margin: 0.1em 0;
  text-align: center;
}

h2 {
  font-size: max(min(7vw, 7vh), 28px);
}

h3 {
  font-size: max(min(5vw, 5vh), 20px);
}

footer {
  display: flex;
  flex-basis: 1 1 100%;
  justify-content: space-around;
  align-content: flex-end;
  align-items: flex-end;
  justify-self: flex-end;
}
footer img {
  filter: drop-shadow(0 0.3vw var(--icon-highlight));
}
footer img:hover {
  animation-name: hover-select;
  animation-timing-function: ease-out;
  animation-duration: 0.01s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.bubble-container {
  background-color: var(--primary-bg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  height: 63%;
  box-sizing: border-box;
  border-left: 0.8vw solid var(--bubble-shade2);
  box-shadow: inset 0.8vw 0 0 0 var(--bubble-shade1);
  border-right: 0.8vw solid var(--bubble-shade1);
  scrollbar-color: var(--main-text) var(--primary-bg);
}

.box-row {
  display: flex;
  flex-direction: row;
}

.bubble-sidebar {
  display: flex;
  flex-direction: column;
  flex-basis: 20%;
  align-items: center;
  justify-content: space-around;
}

.bubble-main {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
}
.bubble-main header {
  display: flex;
  flex-basis: 100%;
  flex-wrap: nowrap;
}
.bubble-main #content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex-basis: 100%;
}
.bubble-main .right-hand-content {
  box-sizing: border-box;
  padding-right: 15%;
}
.bubble-main .left-hand-content {
  box-sizing: border-box;
  padding-left: 8%;
  padding-right: 12%;
}
.bubble-main .centered-content {
  box-sizing: border-box;
  padding-left: 12%;
  padding-right: 12%;
}
.bubble-main #bubble-links {
  display: flex;
  justify-content: space-between;
  justify-items: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  gap: 10%;
}
.bubble-main #bubble-links a, .bubble-main #bubble-links div {
  min-height: 30px;
  min-width: 30px;
}
.bubble-main #bubble-links svg:hover {
  animation-name: hover-select;
  animation-timing-function: ease-out;
  animation-duration: 0.01s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.big-image {
  max-width: 80%;
  border-radius: 10vh;
  align-self: center;
}

#music-page-content {
  height: 100%;
  flex-grow: 1 1 100%;
}

#music-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: 100%;
}

#music-controls {
  display: flex;
  box-sizing: border-box;
  width: 60%;
  margin: 2%;
  justify-content: space-evenly;
}
#music-controls button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(8vh, 8vw);
  width: min(8vh, 8vw);
  min-height: 30px;
  min-width: 30px;
  background-color: var(--primary-bg);
  border: min(0.5vh, 0.5vw) solid var(--main-text);
}
#music-controls button:hover {
  filter: brightness(130%);
}
#music-controls button:active {
  filter: brightness(80%);
}
#music-controls svg {
  fill: var(--main-text);
}

#spinning-disc {
  display: flex;
  flex-basis: 40%;
  align-items: center;
  justify-content: center;
  padding-right: 8%;
}
#spinning-disc img {
  width: min(33vw, 33vh);
}

#bubble-closure {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: var(--secondary-bg);
  align-items: center;
}
#bubble-closure img {
  filter: drop-shadow(0 0.5vw var(--drop-shadow));
}
#bubble-closure #tail {
  justify-self: flex-end;
  padding-left: 10%;
  animation-name: bubble-bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.icon-links {
  width: 7vw;
  height: auto;
}

.pixel {
  image-rendering: pixelated;
}

.tooltip {
  position: relative;
}
.tooltip .tt-text {
  visibility: hidden;
  background-color: var(--bubble-shade2);
  color: var(--main-text);
  z-index: 1;
  text-align: center;
  padding: 2vh 0;
  position: absolute;
  min-width: 30vw;
  left: 105%;
}

.tooltip:hover .tt-text {
  visibility: visible;
}

#slideshow {
  height: 55vh;
  width: 100%;
  max-width: 100%;
  align-self: center;
  overflow: clip;
  z-index: 1;
  border-radius: 10vh;
}
#slideshow .slideshow-img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

#theme-toggle {
  border: none;
  padding: 0 0 0 0;
  background-color: transparent;
}

.bounce-anim {
  animation-name: bouncy;
  animation-timing-function: ease-in-out;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.fade-anim {
  animation-name: fade;
  animation-duration: 1s;
}

.spin-anim {
  animation-name: spin;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes bouncy {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -1vh);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes bubble-bounce {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, -0.8vh);
  }
  70% {
    transform: translate(0, -0.8vh);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes hover-select {
  0% {
    transform: translate(0, 0);
  }
  100% {
    filter: brightness(150%);
    transform: translate(0, -1vh);
  }
}
@keyframes fade {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main-style.css.map */
