html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #2b2929;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
    color: coral;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  padding: 0 20px;
  margin-left: 0;
  line-height: 50px;
  transition: 0.3s;
}

.nav-item {
  margin-right: 20px;
}

.contacts-list {
  list-style: none;
}

.main-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}


.section {
  width: 50%;
}

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

.section-title {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #493ded;
}

.image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;         /* для круглой формы */
  border: 2px solid #ccc;     /* тонкая аккуратная рамка */
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* лёгкая тень */
  margin: 20px auto;          /* отступ и центрирование */
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  background-color: #f8f8f8;
  border-top: 1px solid #ccc;
}

.footer a {
  color: #0366d6;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-logo {
  height: 30px;
}
