body {
  margin: 0;
  font-family: Montserrat, Lato, sans-serif;
  background-color: #1e1e1e;
  color: #f0f0f0;
  /* font-size: large; */
}

#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#header {
  text-align: center;
  padding: 50px 0;
}

#header h1 {
  font-size: 48px;
  margin: 0;
}

#header h2 {
  font-size: 24px;
  font-weight: normal;
  color: #888;
  margin-top: 10px;
}

#summary {
  text-align: left;
  margin-bottom: 50px;
}

#technical-expertise,
#recent-interests,
#contact {
  margin-bottom: 50px;
}

#technical-expertise h3,
#experience h3,
#recent-interests h3,
#contact h3 {
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

#technical-expertise ul,
#recent-interests ul {
  list-style-type: none;
  padding: 0;
}

#technical-expertise li,
#recent-interests li {
  background-color: #2e2e2e;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

#technical-expertise li:hover,
#recent-interests li:hover {
  background-color: #444;
}

#experience .job {
  margin-bottom: 40px;
}

#experience .job h4 {
  margin: 0;
  font-size: 24px;
}

#experience .job span {
  display: block;
  color: #888;
  margin-bottom: 10px;
}

#experience .job p {
  margin-top: 10px;
}

#experience .job ul {
  list-style-type: disc;
  padding-left: 20px;
}

#contact p {
  text-align: left;
  font-size: 18px;
}

.fa-linkedin {
  color: #0e76a8; /* LinkedIn's official blue color */
  transition: color 0.3s ease;
}

.fa-linkedin:hover {
  color: #005582; /* Darker shade on hover */
}

.typing {
}

#typewriter-inner {
  display: inline-block;
  border-right: 0.15em solid #f0f0f0; /* Cursor */
  animation: caret 1s steps(1) infinite; /* Blinking effect */
  padding-right: 3px;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

/* Responsive Design */
@media screen and (min-width: 768px) {
  #technical-expertise ul {
    display: flex;
    flex-wrap: wrap;
  }

  #technical-expertise li {
    flex: 1 1 45%;
    margin-right: 10px;
  }
}

@media screen and (min-width: 1024px) {
  #technical-expertise li {
    flex: 1 1 30%;
  }
}
