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: #4d2323;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header {
  border: 1px solid black;
  background-color: #829985;
}

.main {
  border: 1px solid black;
}

.footer {
  border: 1px solid black;
  background-color: #829985;
}

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

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

.nav-link {
  padding: 0 20px;
  line-height: 50px;
  transition: .3s;
  text-decoration: none;
  color: #f7cb0b;
  font-size: 30px;
}


.nav-link:hover {
  color: #b63369;
}



.section-item a {
  color: #829985;
  text-decoration: none;  
  transition: color 0.5s;
}
.section-item a:hover {
  color: #4d2323;
}

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

.section {
  width: 50%;
}

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

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

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

.link:hover {
  color: #5d7260;
}

.rss {
  width: 121px;
  height: 45px;
  background-image: url("./img/rss.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

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

.section-profile-logo {
  width: 400px;
  height: 400px;
  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;
}

.section-profile-logo:hover {
  filter: none;
}

.pre {
  padding: 0;
  margin: 0;
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

