* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    color: aliceblue;
  }
  
  .container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to top, rgba(99, 109, 131, 0.2), rgba(37, 41, 70, 0.2)), url(assets/KodiBackground.png);
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
  }

  .navbar{
    height: 12%;
    display:  flex;
    align-items: center;
  }

  .logo{
    width: 50px;
    cursor: pointer;
  }

  .menu-icon{
    width: pointer;
    margin-left: 40px;
  }

  nav{
    flex: 1;
    text-align: right;
  }

  nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 60px;
  }