@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

.menu-modal {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    /* display: none; */
    background: rgba(37, 83, 123, 0.9);
    /* -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; */
    z-index: 11111;
    color: #fff;
    text-align: center;
    display: none;
    transition: width 5s ease 3s;
}

.menu-modal a {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    display: block
}

.menu-modal a:hover {
        color: #fcb22d;
        text-decoration: none
}