@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  width: 100vw;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gradient-text {
  font-family: 'Poppins', sans-serif;
  font-size: 25vmin;
  line-height: 20vmin;
  color: transparent;
  background: conic-gradient(
    #183C28 12%, #183C28 33%,
    #bebfc4 33%, #bebfc4 55%,
    #eec643 55%, #eec643 70%,
    #cc9a48 70%, #cc9a48 87%
  );
  background-size: 50%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: expand-rev 0.5s ease forwards;
  cursor: pointer;
}

.gradient-text:hover {
  animation: expand 0.5s ease forwards;
}

.gradient-text span {
  display: block;
}

@keyframes expand {
  0% {
    background-size: 50%;
    background-position: 0 0;
  }
  20% {
    background-size: 55%;
    background-position: 0 1em;
  }
  100% {
    background-size: 325%;
    background-position: -10em -4em;
  }
}

@keyframes expand-rev {
  0% {
    background-size: 325%;
    background-position: -10em -4em;
  }
  20% {
    background-size: 55%;
    background-position: 0 1em;
  }
  100% {
    background-size: 50%;
    background-position: 0 0;
  }
}

.socials {
  margin: 24px 0;
  padding: 0;
  font-size: 15px;
}

@media only screen and (min-width: 400px) {
  .socials {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .socials {
    font-size: 30px;
  }
}

.socials a:hover {
  text-shadow: 0 2px 2px rgba(4, 15, 15, .7);
}

.socials li {
  display: inline-block;
  margin: 0 15px;
  padding: 0;
}

.socials li a {
  color: #040f0f;
}

