.blackScreen{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transform: translateX(200%);
    opacity: 0;
}

.sideBar{
    width: 80%;
    max-width: 600px;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 21;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow: hidden;
    transform: translateX(200%);
}

.closeButton {
    font-size: 150%;
    background-color: black;
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: var(--br3);
    cursor: pointer;
    transition: 100ms ease-out;
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 30px;
    z-index: 22;
}

.closeButton:active{
    transform: scale(0.95);
}

.sideBarButton{
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: var(--font1);
    text-transform: capitalize;
    font-size: 350%;
    margin-bottom: 20px;
    width: fit-content;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
}

.sideBarButton>i{
    font-size: 70%;
}

.sBarSignature{
    font-family: var(--font1);
    font-size: 1500%;
    color: rgba(0, 0, 0, 0.1);
    line-height: 0.8;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: -40px 30px;
}

@media only screen and (max-width: 768px) {
    .sideBarButton{
        font-size: 300%;
    }
    .sBarSignature{
        font-size: 1200%;
        margin: -35px 30px;
    }
}

@media only screen and (max-width: 576px) {
    .sideBarButton{
        font-size: 200%;
        margin-bottom: 30px;
    }

    .sideBarButton>i{
        font-size: 85%;
    }

    .sBarSignature{
        font-size: 700%;
        margin: -25px 30px;
    }
}