@charset "utf-8";
.overlay {
    position: fixed;
    height: 100%;
    width: 0;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(235, 237, 236, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    /* margin-top: 30px; */
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
    white-space: nowrap;
}

.overlay a:hover, .overlay a:focus {
    color: #fc7e8f;
}

.overlay .closebtn {
    position: absolute;
    top: 0px;
    right: 30px;
    font-size: 60px;
}

.menu-social li {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.menu-social li a img {
    display: block;
    width: 32px;
}

.menu-top-actions {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.menu-home-btn img {
    display: block;
    width: 28px;
    height: 28px;
}

@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}