.aside {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1000;
    height: 100vh;
    max-width: 300px;
    width: 100%;
    background-color: #11122b;
    display: none;
    transition: .4s;
}

.aside li {
    list-style: none;
}

.aside-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    font-size: 22px;
    width: 100%;
}

.aside-menu ul a {
    padding: 5px 0;
    margin: 3px 0;
    display: block;
}

.openAside {
    position: fixed;
    top: 10px;
    right: 10px;
    fill: black;
    width: 25px;
    height: 25px;
}

.closeAside {
    position: fixed;
    top: 10px;
    right: 10px;
    fill: white;
    width: 25px;
    height: 25px;
    display: none;
}