body {
    background-color: #e6e1f9;
    font-family: "Nunito Sans", sans-serif;
  }
  
  .header {
    position: relative;
    width: 100%;
    height: 10vh;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  .sticky+.contet {
    padding-top: 60px;
  }
  
  nav {
    top: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: #d5cdf3;
    background-image: url(images/5547963.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    display: flex;    
    justify-content: flex-end;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-right: 20px;
  }
  
  .bar {
    width: 100%;
    height: 4px;
    background-color: #22092C;
  }
  
  .navbar {
    float: right;
  }
  
  .navbar li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
  }
  
  .navbar a {
    text-decoration: none;
    color: #22092C;
    font-weight: bold;
  }
  
  .navbar a:hover {
    color: #873D8C;
  }
  
  .navbar li img {
    height: 30px;
    width: auto;
    vertical-align: middle;
  }

  