.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    width: 300px;
    padding: 2rem;
    z-index: 10000;
    transition: right .3s ease;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, .2);
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    transition: color .3s;
    -webkit-tap-highlight-color: transparent;
}

.close-menu:active,
.close-menu:focus {
    background-color: transparent;
    outline: none;
}

.close-menu:hover {
    color: var(--webpage-main-color);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 0;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu a {
    display: block;
    padding: .5rem .5rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}

.mobile-menu a:hover {
    color: var(--webpage-main-color);
    font-size: 1.3rem;
}

.mobile-menu a.home-link {
    color: var(--webpage-main-color);
}