body {
  margin: auto;
}
.navbar{
    background: #C4BABE;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  #navbar{
    transition: top 0.5s;
  }
  
  .navbar__container{
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 50 10px;
    padding: 50 10px;
  }

  .navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
  }
  .logo{
    margin-top: 30px;
    font-size: 30px;
  }
  .navbar__item{
    height: 80px;
    
  }
  
  .navbar__links{
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    color: #ADA573;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: font-size 0.15s ease;
  }
  
  .navbar__links:hover {
    transition: font-size 0.15s ease;
    font-size: 1.6rem;
  }

  a{
  text-decoration: none;
  color: #ADA573;
}