@import url('css2.css');

@font-face {
  font-family: milky;
  src: url('../fonts/milky.woff2');
}

:root {
  --theme: #090d19;

  --primary: #04f6ff;
  --secondary: #fe7deb;

  --base: #fff;
  --light: #c9c9c9;
}

* {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  color: var(--base);

  &:focus {
    outline: none;
  }
}

html,
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--theme);
  scroll-behavior: smooth;
}

h1,
h2 {
  font-family: 'milky', sans-serif;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-theme {
  background-color: var(--theme) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-base {
  color: var(--text) !important;
}

.text-light {
  color: var(--text) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}

.text-linear-primary {
  background: linear-gradient(to right, #04f6ff 15%, #cdf9f9 50%);
  background: -webkit-linear-gradient(to right, #04f6ff 15%, #cdf9f9 50%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-linear-secondary {
  background: linear-gradient(to right, #fe7deb 15%, #ffdcfc 50%);
  background: -webkit-linear-gradient(to right, #fe7deb 15%, #ffdcfc 50%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1350px !important;
  position: relative !important;
  z-index: 2 !important;
  padding: 0 25px !important;
  margin: 0 auto;
}

.button-base {
  border: 1px solid var(--primary);
  height: 48px;
  padding: 0 15px;
  color: var(--primary);
  border-radius: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-text svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 46%;
  top: 65%;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: 3s pulsate infinite alternate ease-in-out;
}

.hero-text svg text.animate-stroke {
  animation: stroke 4s;
  opacity: 0.2;
}

.hero-text svg text {
  font-family: 'milky', sans-serif;
  text-transform: uppercase;
  animation: stroke 4s;
  stroke-width: 1.2;
  stroke: #04f6ff;
  fill: transparent;
  font-size: 230px;
  display: inline-block;
  letter-spacing: 5px;
  opacity: 0;
}

.section-hero::before,
.hero-image::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    260deg,
    var(--primary) 0%,
    rgba(115, 67, 210, 0) 100%
  );
  -webkit-filter: blur(150px);
  filter: blur(150px);
}

.section-hero:before {
  -webkit-filter: blur(150px);
  filter: blur(150px);
  top: 0;
  right: 0;
  width: 322px;
  height: 308px;
  margin-right: -5%;
  margin-top: -5%;
  z-index: 1;
}

.hero-image:before {
  background: linear-gradient(
    260deg,
    var(--secondary) 0%,
    rgba(115, 67, 210, 0) 100%
  );
  bottom: 0;
  left: 0;
  width: 120%;
  height: 120%;
  opacity: 0.3;
  margin-left: -50%;
  margin-bottom: -30%;
  z-index: -1;
}

.section-case::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    260deg,
    var(--secondary) 0%,
    rgba(115, 67, 210, 0) 100%
  );
  -webkit-filter: blur(150px);
  filter: blur(150px);
  width: 100%;
  height: 120%;
  opacity: 0.2;
  right: 0;
  bottom: 0;
  margin-right: -40%;
  margin-bottom: -20%;
}

.section-resume::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    260deg,
    var(--primary) 0%,
    rgba(115, 67, 210, 0) 100%
  );
  -webkit-filter: blur(150px);
  filter: blur(150px);
  width: 90%;
  height: 90%;
  opacity: 0.15;
  left: 0;
  bottom: 0;
  margin-left: -50%;
  margin-bottom: -20%;
}

@media (max-width: 600px) {
  .section-case::before {
    width: 400px;
    height: 400px;
  }

  .section-resume::before {
    width: 400px;
    height: 400px;
  }

  .hero-text svg {
    top: 35%;
    left: 50%;
  }

  .hero-text svg text.animate-stroke {
    opacity: 0.8;
  }

  .hero-text svg text {
    font-size: 350px;
    stroke-width: 2;
  }

  @keyframes pulsate {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.02);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 1;
  }

  100% {
    stroke-dashoffset: 100%;
    stroke-dasharray: 100% 0;
    stroke-width: 1;
  }
}

@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}
@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}
#dexscreener-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}
