html {
  scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.nav-link {
  padding: 0 20px;
  line-height: 50px;
  transition: 0.3s;
}

.contacts-link {
  text-decoration: none;
  color: #808080;
}

.projects-link {
  text-decoration: none;
  color: #808080;
}

.nav-item a {
  color: #808080;
  text-decoration: none;
  transition: color 0.5s;
}
.nav-item a:hover {
  color: #000000;
}

.main-container {
  display: flex;
  flex-wrap: wrap;
}

.section {
  width: 50%;
}

.section-profile {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.section-title {
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section {
    width: 100%;
  }
}

.section-profile-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
    filter: grayscale(0.2) brightness(1.05);
    transition: .3s;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.footer-link {
    text-decoration: none;
    color: #000000;
    transition: color 0.5s;
}

.footer-link:hover {
    color: #808080;
}

.footer-logo {
    width: 121px;
    height: 45px;
    background-image: url(./assets/rs-school-logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 0 20 0;
}

.footer-info {
    display: flex;
    gap: 10px;
    align-items: center;
}