
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  padding: 1rem;
}

.container {
  margin: 0 auto;
}

header .logo {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  right: 10px;
  transform: rotate(5deg);
  margin-bottom: -50px;
}

@media screen and (min-width: 550px) {
  header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 15px;
    height: 300px;
    margin-right: 4%;
  }
  header .logo {
    margin: unset;
    width: 350px;
    object-fit: contain;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  header {
    margin-top: 50px;
  }
  header .logo {
    margin-top: -25px;
    width: 420px;
    right: 40px;
  }
}

@media screen and (min-width: 1000px) {
  header {
    margin-right: 8%;
  }
  header .logo {
    width: 475px;
    right: 60px;
  }
}

nav {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

@media screen and (min-width: 550px) {
  nav {
    flex-direction: column;
    margin-top: 0;
  }
}

nav .blob-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .blob-container img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 -10px;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  nav .blob-container img {
    max-width: 250px;
  }
}

@media screen and (min-width: 1000px) {
  nav .blob-container img {
    max-width: 275px;
  }
}

nav .blob-container .link {
  outline: none;
  border: none;
  background-color: transparent;
  position: absolute;
  text-decoration: none;
  z-index: 10;
  font-family: 'Anton';
  font-size: calc(1.35rem + 1vw);
  color: #000;
  transition: all 0.1s ease-in;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

@media screen and (min-width: 550px) {
  nav .blob-container .link {
    font-size: calc(1.45rem + 1vw);
  }
}

@media screen and (min-width: 768px) {
  nav .blob-container .link {
    font-size: calc(1.55rem + 1vw);
  }
}

@media screen and (min-width: 1000px) {
  nav .blob-container .link {
    font-size: calc(1.65rem + 1vw);
  }
}

nav .link:hover {
  cursor: pointer;
  font-size: calc(1.55rem + 1vw);
}

@media screen and (min-width: 550px) {
  nav .link:hover {
    font-size: calc(1.65rem + 1vw);
  }
}

@media screen and (min-width: 768px) {
  nav .link:hover {
    font-size: calc(1.75rem + 1vw);
  }
}

@media screen and (min-width: 1000px) {
  nav .link:hover {
    font-size: calc(1.85rem + 1vw);
  }
}

nav .shows .link:hover { color: rgb(14, 231, 255); }
nav .media .link:hover { color: lime; }
nav .socials a:hover { color: rgb(255, 51, 221); }
nav .media img { aspect-ratio: 1 / 1.2; }
nav .socials img { aspect-ratio: 1 / 0.75; }

@media screen and (max-width: 549px) {
  nav .shows { top: -70px; }
  nav .media { top: -25px; right: 5px; }
  nav .socials { top: -40px; left: 10px; }
}

@media screen and (min-width: 550px) {
  nav .shows { top: -50px; right: 90px; }
  nav .media { top: -170px; left: 20px; }
  nav .socials { right: 40px; top: -260px; }
}

@media screen and (min-width: 768px) {
  nav .shows { top: -105px; right: 150px; }
  nav .media { top: -285px; left: 50px; }
  nav .socials { right: 50px; top: -400px; }
}

@media screen and (min-width: 1000px) {
  nav .shows { top: -95px; right: 120px; }
  nav .media { top: -305px; left: 120px; }
  nav .socials { right: 50px; top: -450px; }
}

#background {
  opacity: 0.75;
  background-size: cover;
  background-image: url('../../images/concrete.jpg');
  position: fixed;
  inset: 0;
  z-index: -100;
}

#boxes {
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

@media screen and (min-width: 768px) {
  #boxes { flex-direction: row; flex-wrap: wrap; }
  #boxes .box { width: calc(50% - 100px); }
  #boxes { margin-top: 25px; max-width: 1000px; }
}

#boxes .box { width: 100%; }

#dont-touch-my-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 10;
}

#dont-touch-my-boxes img {
  position: relative;
  z-index: 1000;
  cursor: pointer;
}

@media screen and (min-width: 320px) {
  #dont-touch-my-boxes img { max-width: 90%; }
}

#dollar-spin-gif { position: fixed; top: 1rem; right: 1rem; cursor: pointer; }

.hide { opacity: 0; visibility: hidden; }

.show {
  opacity: 1;
  visibility: visible;
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.75);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

#alert {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 10;
}

#alert img {
  position: relative;
  z-index: 50;
  cursor: pointer;
}

@media screen and (min-width: 320px) {
  #alert img { max-width: 90%; }
}

#alert p {
  color: #333333;
  max-width: 50%;
  margin-left: 50px;
  margin-bottom: 30px;
  font-size: 16px;
  position: absolute;
  z-index: 100;
  font-family: monospace;
}

.divider { display: flex; justify-content: center; }
.divider img {
  margin-bottom: 32px;
  margin-top: -32px;
  max-width: 100%;
  opacity: 0.8;
  transform: rotate(1deg);
}

@media screen and (min-width: 768px) {
  .divider img { margin: 32px; }
}

#instagram-embed iframe[src*='instagram'] { width: 100% !important; max-width: 100% !important; border: 2px solid red; }
#instagram-embed #instagram-embed-0 { width: 100% !important; border: 2px solid red; }

a, a:visited {
  transition: ease-in all 0.1s;
  font-size: 25px;
  font-family: 'Chalkboard SE', 'Comic Sans MS', cursive, sans-serif;
  color: blue;
  text-decoration: underline;
}

a:hover, a:active { color: rgb(225, 53, 82); }

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 15px 0 30px;
  text-align: center;
}

/* Fullscreen window behavior for Maximize */
.window.fullscreen, .win98.window.fullscreen {
  position: fixed;
  inset: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.window.fullscreen .window-body {
  height: calc(100vh - 40px);
  overflow: auto;
}

/* Chaotic movement when attempting to close boxes */
.boxes-chaos #boxes .box {
  animation: chaosMove var(--dur, 1s) infinite alternate ease-in-out;
  will-change: transform;
}

@keyframes chaosMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(calc(var(--dx, 20px) / 2), calc(var(--dy, 20px) / 2)) rotate(2deg);
  }
  100% {
    transform: translate(var(--dx, 20px), var(--dy, 20px)) rotate(-2deg);
  }
}
