.returnController {
    width: 100%;
    position: absolute;
    top: 0;
}

.backBtn {

    display: flex;
    justify-content: center;
    align-content: center;

    width: 70px;
    height: 50px;
    margin: 20px;

    font-size: 30px;
    color: rgba(28, 200, 0, 1);

    border: 2px solid rgba(28, 200, 0, 1);
    border-right: 0px solid transparent;

    user-select: none;
    transition: transform 0.5s ease;
}

.backBtn:hover {
    transform: scale(1.09);
    cursor: pointer;
}