@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Poppins&display=swap');

.navbar {
    position: absolute;
    z-index: 999999999;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;

    & p {
        margin-left: 50px;
        font-family: "Abril Fatface";
        color: #fff;
        font-size: 30px;
    }

    & .menu {
        display: none;
    }

    & .mmnn {
        display: none;
    }
}
 
.items {

    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 500px;
    margin-right: 50px;
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 20%);

    & a {
        font-family: "Arial";
        padding: 10px 20px 10px 20px;
        color: #000;
        font-size: 19px;

        & i {
            font-size: 25px;
        }
    }
}


@media screen and (max-width: 1000px) {
    .mmnn {
        display: flex;
    }

    .navbar {

        & .menu {
            display: block;
            color: #fff;
            font-size: 50px;
            margin-left: 30px;
            /* position: absolute; */
            z-index: 999;
        }

        & .mmnn {
            display: flex;
        }

        & p {
            margin-left: 0px;
        }   

    }

    .items {
        position: absolute;
        border-radius: 0px;
        top: 0;
        margin-top: -30px;
        width: 390px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: -50vh;
        transition: 0.5s all ease-in-out;
        background: rgba(0, 0, 0, 0.9);

        & a {
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 30px;
            color: #fff;

            & i {
                font-size: 40px;
            }
        }
    }
}

.hoverable {
    margin-left: 0;
    transition: 0.5s all ease-in-out;
    overflow: hidden;
}

.hoverabled {
    overflow: hidden;
}