* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.header {
  background-color: #829985;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  

}

.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;
  
  color: white;
}


.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;
}
.nav-link {
  text-decoration: none;
}
.nav-link:hover {
  text-decoration: underline;

}

.round {
  border-radius: 50%;
  width: 180px;
  height: 180px;
}
.section-item {
  position: relative;
  padding-left: 30px;
  list-style-type: none;
}

.section-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0px;
  width: 10px;
  height: 10px;
  border: 1px solid #829985;
  border-radius: 50%;
}
.footer {
  background-color: #829985;

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


}

.image {
  width: 90px;
  height: 90px;

}
.link{
  font-size: 35px;
  text-decoration: none;
  color:white;
}
.year{
  font-size: 35px;
  color:#4d2323;
}
