*{
    font-family: Arial, Helvetica, sans-serif;
    word-spacing: 1px;
    line-height: 200%;
    /* letter-spacing: 1px; */
}
i {
    cursor: pointer;
}

.nav-btn i{
    position: fixed;
    top: 10px;
    left: 10px;
    color: #333;
}
body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    height: 120px;
    width: auto;
}

.side-fixed{
    position: fixed;
    top:0;
    left: 0;
    height: 100vh;
    padding: 0;
    margin: 0;
}
.nav{
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;

}
.nav.visible{
    transform: translateX(0%);
}

.side-bar-black{
    width: 60%;
    transition-delay: 0.4s;
    height: 100vh;
    max-width: 480px;
    min-width: 320px;
    background-color: #333;
}
.side-bar-black.visible {
    transition-delay: 0s;
  }

.side-bar-red{
    background-color: red;
    height: 100vh;
    transition-delay: 0.2s;
    width: 95%;
    padding: 0.1px;
}

.side-bar-red.visible {
    transition-delay: 0.2s;
  }

.side-bar-white{
    background-color: #fff;
    height: 100vh;
    transition-delay: 0s;
    width: 95%;
    position: relative;
    padding: 0.1px;
}
.side-bar-white.visible {
    transition-delay: 0.4s;
  }

.close-btn{
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 1.2rem;
    color: #555;
}

ul li {
    list-style: none;
}

ul li a{
    list-style: none;
    text-decoration: none;
    font-size: 1.2rem;
    color: #000;
    
}