* {
    box-sizing: border-box;
    margin: 0;
  }
  html {
    scroll-behavior: smooth; 
  }
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }
  a {
    text-decoration: none;
  }
.container {
    max-width: 70%;
    margin: 0 auto;
    background-color: aliceblue;
    padding: 10px 30px;
}
.main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 20px 0;
}
.main-menu__item-link {
    font-size: 15px;
    padding: 0 10px;
    line-height: 50px;
    color: #000f;
    transition: .3s;
    transition: color 0.5s;
}
.main-menu__item-link:hover {
    text-decoration: none;
    color: cadetblue;
}
.contact-data-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section {
  padding: 20px 0;
}
.section-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #17225a;
  }
.footer-content-wrapper {
  display: flex;
  justify-content: space-around;
  font-size: 17px;
}