/* #### HOME ################################################################################## */

main section.home {
  position: relative;
  justify-content: center;
}

.home > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home div.logo {
  flex-grow: 1;
}

.home div.logo svg {
  animation: logo-zoom 5s forwards;
  width: 66%;
}
@keyframes logo-zoom {
  0% {
    scale: 0.5;
    filter: blur(16px);
  }
  50% {
    filter: none;
  }
  100% {
    scale: none;
    filter: none;
  }
}

.home div.tag svg {
  opacity: 0;
  animation: home-opacity 2s forwards 2s;
  width: 50%;
}

.home div.text p {
  opacity: 0;
  animation: home-opacity 2s forwards 4s;
  margin-top: var(--block-16);
  max-width: 90%;
  font-weight: 200;
  font-size: var(--block-20);
  font-family: var(--font-2);
  text-align: center;
}

@keyframes home-opacity {
  0% {
    scale: 0.95;
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    scale: none;
    opacity: 1;
    filter: none;
  }
}

.home div.back {
  display: flex;
  position: fixed;
  z-index: -1;
  inset: 0;
  background-color: var(--color-1);
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.home div.back img {
  animation:
    background-rotate 120s infinite linear,
    background-blur 4s forwards,
    background-scale 4s forwards;
  aspect-ratio: 1 / 1;
  min-width: 124%;
}

@keyframes background-blur {
  0% {
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    -webkit-filter: none;
    filter: none;
  }
}
@keyframes background-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes background-scale {
  0% {
    scale: 2;
  }
  100% {
    scale: 1;
  }
}

/* ################################################################################################ */
/* ################################################################################################ */
/* ################################################################################################ */

@media screen and (max-width: 608px) {
  .home > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
  }

  .home div.logo {
    flex-grow: initial;
    flex-basis: 50%;
  }

  .home div.logo svg {
    width: 100%;
  }

  .home div.tag svg {
    margin-top: var(--block-32);
    width: 95%;
  }

  .home div.text p {
    margin-top: var(--block-16);
    font-size: calc(var(--font-size) * 1.33);
  }
}
