@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1e1e1e;
  color: #d4d4d4;
  font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
  line-height: 1.6;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: 0;
  padding: 30px;
}

.photo {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 10px;
  max-width: 500px;

}

.name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #569cd6;
  margin-bottom: 10px;
  margin-left: 1.5rem;
  text-align: left;
  position: relative;
  display: inline-block;
}

.name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 200ms ease;
  border-radius: 1px;
}

.name:hover::after {
  transform: scaleX(1);
}

.contact {
  color: #9cdcfe;
  margin-bottom: 20px;
}

.contact a {
  color: #4fc1ff;
  text-decoration: none;
  margin-right: 15px;
}

.contact a:hover {
  color: #ffffff;
}

.description {
  color: #d4d4d4;
  margin-bottom: 30px;
  line-height: 1.6;
}

.item {
  margin-bottom: 20px;
}

.item a {
  color: #dcdcaa;
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
}

.item a:hover {
  color: #ffffff;
  text-decoration: none;
}

.item-description {
  color: #b5cea8;
  margin-top: 5px;
}

/* Subtle animations */
.container {
  animation: fadeIn 0.5s ease-out;
}

#profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 20px;
  }

  .name {
    font-size: 1.6rem;
  }
}