.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.link, .list__link {
  font-weight: 600;
  color: black;
  transition: opacity;
}

.list__link:hover {
  opacity: 0.6;
}

.section {
  margin: 0 10% 50px;
}

.section__title {
  text-align: center;
  margin: 0 auto 30px;
}
.page__header {
  margin: 20px 10% 50px;
}
.language-list__heading {
  font-weight: 700;
}

.skills-list {
  text-align: center;
}
.about-me {
  display: flex;
  flex-wrap: wrap;
}

.about-me__photo {
  border-radius: 50%;
  object-position: center left;
  object-fit: cover;
  width: 200px;
  height: 200px;
}

.projects-list {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer__course-img {
  width: 100px;
  margin-bottom: 30px;
}

.page__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page__footer::before {
  width: 100%;
  margin-bottom: 50px;
  border-top: gray solid 1px;
  content: '';

}

.footer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  margin: 20px;
}

.footer__date {
  color: lightgray;
  font-size: 10px;
}

@media screen and (max-width: 760px) {
  .projects-list{
    grid-template-columns: 1fr
  }
}

.project{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project__img {
  width: 90%;
}
