.menu{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: fixed;
    z-index: 999;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(to bottom, #000, #fff);
    box-shadow: 2px 2px 10px black;
    font-family: verdana;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.menuClose{
    height: 35px;
    width: 35px;
    position: absolute;
    top: 1%;
    right: 1%;
    cursor: pointer;
}

.menu ul{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    margin-top: 10%;
}

.menu ul li{
    margin: 0;
    margin-top: 10px;
    border-bottom: 2px solid #fff;
    transition: border-color 1s;
}

.menu ul li a{
    text-decoration: none;
    color: #fff;
    transition: color 1s;
}

.menu .logo{
    height: 240px;
    width: 240px;
}

.menu ul li:hover{
    border-color: #04b4ec;
}

.menu ul li:hover a{
    color: #04b4ec;
}

.menu ul .active{
    color: #04b4ec;
    border-color: #04b4ec;
}