.name {
  font-size: 4rem;
  /* font-family: roboto; */
  font-family: "Source Code Pro", monospace;
}

.logo {
  height: 5%;
  width: 5%;
  float: left;
}

.mouse-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.follower {
  background-color: #64ffda;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  transform-origin: center;
}

@keyframes blob {
  0%,
  100% {
    border-radius: 50%;
  }
  25% {
    border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 40% 60% 30% 70%;
  }
  75% {
    border-radius: 30% 70% 60% 40% / 70% 40% 60% 30%;
  }
}

.introStyles {
  margin-top: 4rem;
  margin-bottom: 4rem;

  font-family: "Source Code Pro", monospace;
}

.portfolio {
  padding: 2rem;
}

.projects-section {
  padding: 2rem 0;
}

.projects-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.project {
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-image-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 4px;
}

.project-image {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.project-title {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #0b182c;
  font-family: "Source Code Pro", monospace;
}

.project-description {
  margin: 0;
  color: #0b182c;
  font-family: "Source Code Pro", monospace;
}

h3 {
  padding-bottom: none;
}

.navStyles {
  font-family: "Source Code Pro", monospace;
}

.hover {
  color: wite;
  text-decoration: none;
  cursor: pointer;
}
.hover:hover {
  color: #64ffda;
  cursor: pointer;
  text-decoration: none;
}

.about-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-title {
  text-align: center;
  font-family: "Source Code Pro", monospace;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.about-image-container {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin: 3rem;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  max-width: 600px;
  font-family: "Source Code Pro", monospace;
}

.about-text p {
  margin: 0;
}
