/* Index */
.index-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.projects {
  margin-top: 100px;
}

.intro p,
.lists {
  margin-top: 20px;
}

.index-container ul {
  list-style: none;
  padding: 0;
}

.lists li {
  margin-top: 10px;
}

#hr {
  width: 80%;
  border: 0;
  height: 1px;
  margin: 0;
  opacity: 1;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 135, 202, 1), rgba(0, 0, 0, 0));
}

.section-title {
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-size: 16px;
}

.section-title:hover,
.post-title:hover {
  color: #0087ca;
}

.post-title {
  position: relative;
}

.post-title:after {
  background-color: #0087ca;
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
  width: 100%;
}

.post-title:hover:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.essays {
  margin-bottom: 60px;
}

/* Media Queries */
@media screen and (max-width: 650px) {
  .projects {
    margin-top: 50px;
  }
}
