h2 {
  color: #e67e22;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

h3,
h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #68d391;
}

.filters {
  margin-bottom: 20px;
}

#name-search {
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tag:hover {
  background-color: #0056b3;
}

.projects-list {
  margin-top: 20px;
}

.project {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project h2 {
  margin-top: 0;
}

.project p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.highlight {
  color: #63b3ed;
  font-weight: bold;
}

@media (max-width: 768px) {
  .tags-list {
      flex-direction: column;
  }
}

.experience-entry {
  max-width: 800px;
  width: 100%;
  margin: 20px 0;
  padding: 20px;
  background-color: #2d3748;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #e2e8f0;
}

.experience-entry .experience-company {
  color: #f6ad55;
}

.experience-entry .experience-headers {
  color: #68d391;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 20px;
}

section {
  animation: fadeIn 0.5s ease-in-out both;
}

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

@media (max-width: 640px) {
  .hidden-mobile {
      display: none !important;
  }
}