@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  margin: 0;
  padding: 1rem;
  position: relative;
  z-index: 0;
  color: blue;
  font-family: "Atkinson Hyperlegible", sans-serif;
}
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }
}

.snowball-container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.snowball-container.invisible {
  opacity: 0;
  transition: opacity 2s;
}

@keyframes waves-margin {
  from {
    margin: 0px;
  }
  to {
    margin: min(50vh, 50vw);
  }
}
@keyframes waves {
  0% {
    margin: 0px;
    border: 0.5rem solid color-mix(in srgb, blue, transparent 0%);
  }
  50% {
    border: 0.5rem solid color-mix(in srgb, blue, transparent 50%);
  }
  100% {
    margin: min(50vh, 50vw);
    border: 0.5rem solid color-mix(in srgb, blue, transparent 100%);
  }
}
.snowball {
  border-radius: 50%;
  width: min(50vh, 50vw);
  height: min(50vh, 50vw);
  background-color: red;
  animation: waves-margin 3s infinite;
  animation-timing-function: linear;
}

.snowball-wave {
  border-radius: 50%;
  animation: waves 3s infinite;
  animation-timing-function: linear;
}

.player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

header,
main {
  position: relative;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  header,
  main {
    width: 100%;
    flex-direction: column;
  }
}

header {
  justify-content: space-between;
}
header iframe {
  min-height: 120px;
  height: 120px;
  border: 0;
}
@media (max-width: 600px) {
  header iframe {
    min-height: 100px;
    height: 100px;
  }
}
header iframe.highlighted {
  box-shadow: 0px 0px min(10vh, 100vw) blue inset, 0px 0px min(100vh, 100vw) red;
  transition: box-shadow 2s;
}

@media (max-width: 600px) {
  main {
    margin-bottom: 20vh;
  }
}

section {
  flex: 0 0 48%;
  margin-right: 1rem;
}
section:last-of-type {
  margin-right: 0;
}
section.bot em {
  font-size: 300%;
}
section a {
  color: red;
  text-decoration-color: blue;
  text-decoration-thickness: 0.2em;
  text-transform: lowercase;
}

footer {
  position: fixed;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  height: auto;
  text-align: center;
  font-size: 300%;
  color: red;
  text-transform: lowercase;
  font-weight: bolder;
  z-index: 99999;
}
footer a {
  color: inherit;
  text-decoration-color: blue;
  text-decoration-thickness: 0.2em;
}
footer a:hover {
  color: blue;
  text-decoration-color: red;
}

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