:root {
  --bg-color: #0A192F;
  --primary-color: #64FFDA;
  --secondary-color: #8892B0;
  --text-color: #CCD6F6;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 56px;
}

.text-consolas {
  font-family: consolas;
}

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

.text-bold {
  font-weight: bold;
}

.float {
  animation: float 3s ease-in-out infinite;
}

#projects {
  background-color: var(--bg-color);
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

section {
  padding: 4rem 2rem;
}

.smooth-transition {
  transition: transform 0.3s ease;
}

.hover-effect:hover {
  transform: translateY(-10px);
}

.rotate-180 {
  transform: rotate(180deg);
}
