.text-box {
  display: flex;
  padding: 400px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  /* width: 100%; */
}

.text-box-heading {
  align-self: stretch;
  text-align: center;
  margin: 0 auto;
}

.text-box-body {
  max-width: 951px;
  text-align: center;
  margin: 0;
}

#emoji {
  /* display: inline-block; */
  font-size: 0.8em;
  position: relative;
}

/* Blinking cursor effect */
#emoji::after {
  content: "|";
  position: absolute;
  right: -25px;
  font-size: 1.2em;
  opacity: 1;
  animation: blink 0.7s infinite;
  color: var(--neon);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.content{
  display: flex;
  justify-content: space-between; 
  align-items: flex-start; 
  margin: 0;
  padding: 0;
}

.dot-logo {
  transform: rotate(5deg);
  position: absolute;
  right: 102px;
  top: 298px;
  transition: transform 0.4s ease;
  z-index: 1;
}

.dot-link:hover .dot-logo {
  transform: scale(1.1) rotate(5deg);
}

.creazore-logo {
  transform: rotate(15deg);
  position: absolute;
  left: 140px;
  top: 1000px;
  transition: transform 0.4s ease;
  z-index: 1;
}

.creazore-link:hover .creazore-logo {
  transform: scale(1.1) rotate(15deg);
}

.resume,
.scriucutolk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  transform: rotate(-10deg);
  transition: transform 0.4s ease;
  z-index: 1;
}

.resume-link:hover .resume,
.scriucutolk-link:hover .scriucutolk {
  transform: scale(1.1) rotate(-10deg);
}

.scriucutolk {
  left: 100px;
  top: 250px;
}

.resume {
  right: 127px;
  top: 1065px;
}

.resume-image,
.scriucutolk-image {
  transition: transform 0.4s ease;
}

.resume-caption,
.scriucutolk-caption {
  font-family: "Spot Mono";
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: var(--neon);
  margin: 0;
}

@media (max-width: 1440px) {
  .text-box {
    padding: 500px 100px 125px 100px;
  }

  .scriucutolk-image {
    width: 400px;
  }

  .dot-logo {
    top: 345px;
    width: 250px;
    height: 75px;
  }
  
  .creazore-logo {
    top: 1140px;
    width: 300px;
  }

  .resume .resume-image {
    width: 250px;
  }
  
  .resume {
    top: 1115px;
  }
}
@media (max-width: 1068px) {
  .text-box {
    padding: 540px 50px 250px 50px;
    gap: 20px;
  }

  .text-box-heading {
    font-size: 50px;
  }
  
  .scriucutolk {
    left: 76px;
    top: 322px;
  }

  .scriucutolk-image {
    width: 350px;
  }

  .dot-logo {
    right: 48px;
    top: 615px;
    width: 200px;
    height: 75px;
  }
  
  .creazore-logo {
    left: 67px;
    top: 1220px;
    width: 250px;
  }

  .resume .resume-image {
    width: 200px;
  }
  
  .resume {
    right: 60px;
    top: 1210px;
  }
}
@media (max-width: 734px) {
  body {
    gap: 50px
  }
  .text-box {
    padding: 400px 50px 320px 50px;
    gap: 20px;
  }
  .text-box-heading {
    font-size: 24px;
    line-height: 31.75px;
  }
  .scriucutolk-image {
    width: 150px;
  }

  .dot-logo {
    right: 35px;
    top: 352px;
    width: 130px;
    height: 50px;
  }
  
  .creazore-logo {
    left: 35px;
    top: 782px;
    width: 150px;
  }
  
  .resume,
  .scriucutolk {
    gap: 10px;
  }

  .resume .resume-image {
    width: 100px;
  }
  
  .scriucutolk {
    left: 35px;
    top: 202px;
  }
  
  .resume {
    right: 45px;
    top: 780px;
  }

  .resume-caption,
  .scriucutolk-caption {
    font-size: 16px;
    font-weight: 700;
  }
}
@media (max-width: 400px) {
  .text-box {
    padding: 400px 50px 250px 50px;
  }
  .creazore-logo {
    left: 40px;
    top: 800px;
    width: 120px;
  }

  .resume {
    right: 40px;
    top: 850px
  }

  .resume .resume-image {
    width: 90px;
  }
}