@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poiret+One&display=swap");
:root {
  --text-color: #111111;
  --accent-color: #d49d36;
  --bg-color: #EFEFEF;
  --color: #434343;
  --background: #ffffff;
}

body {
  font-family: "Poiret One", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2vw;
  margin: 0;
  background: var(--bg-color);
  color: var(--text-color);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  margin: 0;
  font-size: 8vw;
}

section {
  padding: 6vw 1rem;
  display: flex;
  justify-content: center;
}

header {
  position: relative;
  background: url(./lib/2023-04-15_11.05.jpeg) top/110% no-repeat, var(--text-color);
  width: 100%;
  height: 50vw;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(0.4vw);
          backdrop-filter: blur(0.4vw);
}
header > h1 {
  gap: 0.2em;
  font-size: 11vw;
  color: var(--bg-color);
  position: relative;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  text-shadow: #000 0 1vw 0;
}

.hopping {
  display: inline-flex;
  --keyframe-amount:.2em;
}
.hopping > span {
  animation: hopping-text 1.4s step-end infinite both;
}
@keyframes hopping-text {
  0% {
    transform: translateY(0);
  }
  12.5% {
    transform: translateY(calc(var(--keyframe-amount) / 5));
  }
  25% {
    transform: translateY(calc(var(--keyframe-amount) / 5 * 2));
  }
  37.5% {
    transform: translateY(calc(var(--keyframe-amount) / 5 * 3));
  }
  50% {
    transform: translateY(calc(var(--keyframe-amount) / 5 * 4));
  }
  62.5% {
    transform: translateY(calc(var(--keyframe-amount) / 5 * 3));
  }
  75% {
    transform: translateY(calc(var(--keyframe-amount) / 5 * 2));
  }
  87.5% {
    transform: translateY(calc(var(--keyframe-amount) / 5));
  }
  100% {
    transform: translateY(0);
  }
}

.split {
  display: inline-flex;
}

.waving > span {
  animation: rainbow 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1 forwards;
}
@keyframes rainbow {
  from {
    transform: translateY(0em);
  }
  20% {
    transform: translateY(-0.2em);
  }
  to {
    transform: translateY(0em);
  }
}

.miso-scroll-banner {
  color: var(--accent-color);
  display: flex;
  overflow: hidden;
  padding: 16px 0;
}
.miso-scroll-banner > span {
  padding: 0 0.2rem;
  line-height: 0.8em;
  font-size: 8vw;
  margin: 0;
  animation: scroll-to-left 8s linear infinite both;
}
@keyframes scroll-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.icon-lists {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 0.5em;
}

.fade-out {
  font-size: 0.3em;
  background: var(--text-color);
  color: var(--bg-color);
  position: absolute;
  left: 0;
  right: 0;
  top: -2em;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 2px 4px;
  animation: fade-out-info 1s cubic-bezier(0.23, 1, 0.32, 1) 1 forwards;
}
@keyframes fade-out-info {
  to {
    transform: translateY(-16px);
    opacity: 0;
  }
}

#intro {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#intro > div {
  background: var(--bg-color);
  box-sizing: border-box;
  width: 100%;
  max-width: 600px;
}
#intro > div:nth-child(1) > h2 {
  width: -moz-max-content;
  width: max-content;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  align-self: center;
  font-size: 9vw;
  margin: 0;
  cursor: copy;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#intro > div:nth-child(1) > h2:hover {
  transform: translateY(0);
  opacity: 0.9;
}
#intro > div:nth-child(1) > h2:active {
  transform: translateY(4px);
  opacity: unset;
}
#intro > div:nth-child(1) > *:not(h2) {
  margin: 0.5em 0;
}

#social-links {
  display: flex;
  justify-content: center;
}
#social-links > ul {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#social-links > ul li {
  margin: 1rem 0;
  flex-basis: 200px;
}
#social-links > ul li a {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: initial;
  border: var(--text-color) 1px;
  border-bottom-style: solid;
}
#social-links > ul li a:hover {
  border-color: var(--accent-color);
}
#social-links > ul li a p {
  margin: 0;
}
#social-links > ul li a img {
  display: block;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

#my-links > ul {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
#my-links > ul li {
  margin: 1rem 0;
  flex: 0 0 100%;
}
#my-links > ul li a {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: initial;
  border: var(--text-color) 1px;
  border-bottom-style: solid;
}
#my-links > ul li a:hover {
  border-color: var(--accent-color);
}

#support {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#support > * {
  font-weight: bolder;
}
#support ul {
  padding: 1em 0;
  display: flex;
  gap: 1em;
}
#support ul li:nth-child(1) a {
  background: #0096fa;
}
#support ul li:nth-child(2) a {
  background: #009688;
}
#support ul li:nth-child(3) a {
  background: #003087;
}
#support ul > li a {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--bg-color);
  text-decoration: none;
  box-sizing: border-box;
  width: 26vw;
  display: block;
  padding: 1em 2em;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  transition: 0.1s;
}
#support ul > li a:hover {
  background: var(--accent-color);
}
#support ul > li a:active {
  transition: 0s;
  transform: scale(0.9);
}

@media screen and (max-width: 800px) {
  body {
    font-size: 24px;
  }
  #intro {
    height: -moz-max-content;
    height: max-content;
  }
  #intro > div:nth-child(1) {
    height: -moz-max-content;
    height: max-content;
    background: linear-gradient(to right, var(--bg-color) 0, var(--bg-color) 90%, transparent 90%);
    width: 100%;
  }
  #intro > div:nth-child(1) > h2 {
    font-size: 20vw;
  }
  #social-links > ul {
    display: inline;
  }
  #my-links > ul {
    display: inline;
  }
  .miso-scroll-banner > span {
    font-size: 64px;
  }
  #support ul {
    width: 100%;
    flex-direction: column;
  }
  #support ul > li a {
    min-width: unset;
    width: 100%;
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */