:root {
  --anim-duration: 4s;
}

body {
  margin: 0;
  padding: 0;
  display: grid;
  place-content: center;
}

@font-face {
  font-family: steelfish;
  src: url("../assets/Steelfish Rounded Bd.otf") format("opentype");
}
.main #container {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  background: #e6a243;
}
.main #container:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #f3e39c 0%, #e6a243 100%);
  animation: OpacityAnim var(--anim-duration) ease-in-out 0s infinite alternate;
  position: absolute;
}
.main #container:after {
  content: "";
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #e6a243 0%, #f3e39c 100%);
  animation: OpacityAnim var(--anim-duration) ease-in-out calc(-1 * var(--anim-duration)) infinite alternate;
  position: absolute;
}
.main .circle {
  border-radius: 50%;
  width: 177px;
  height: 177px;
  background-color: #fff;
  position: absolute;
  opacity: 1;
  animation: scaleIn 16s infinite cubic-bezier(0.1, 0.11, 0.89, 0.9);
  z-index: 10;
  filter: blur(1px);
}
@media only screen and (max-width : 479px) {
  .main .circle {
    margin-top: -240px;
  }
}
.main .item {
  z-index: 100;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width : 479px) {
  .main .item {
    margin-top: -240px;
  }
}
.main .item .logo {
  width: 220px;
}
@media only screen and (max-width : 767px) {
  .main .item .logo {
    width: 60%;
    max-width: 320px;
  }
}
.main .item .text {
  position: absolute;
  bottom: 6rem;
  text-shadow: 0 0 25px white;
  text-align: center;
  color: #111;
  font-family: "steelfish";
  font-size: 56px;
  letter-spacing: 8px;
}
@media only screen and (max-width : 767px) {
  .main .item .text {
    width: 90%;
    font-size: 36px;
    bottom: 8rem;
  }
}
@media only screen and (max-width : 479px) {
  .main .item .text {
    width: 90%;
    font-size: 30px;
    bottom: 16rem;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0.1;
  }
  to {
    transform: scale(8, 8);
    opacity: 0;
  }
}
@keyframes OpacityAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  opacity: 0.5;
}
@media only screen and (max-width : 479px) {
  #particles {
    top: 25%;
    width: 100%;
    height: 100%;
  }
}

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