@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Philosopher', sans-serif;
}

.menu-bar{
    display: none;
}

.btn-closemenu{
    display: none;
}

.menu{
    position:fixed;
    width: 8%;
    min-height: 100vh;
    height: 100%;
    background-color: #fdf5f6;
    float: left;
}

.menu img{
    width: 100%;
}

.vineta{
    width: 10px;
    height: 3px;
    background-color: #af8790;
    transition: all 300ms;
}

.menu-items{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 415px;
    margin-top: 35px;
}

.menu-item{
    display: flex;
    align-items: center;
}

.menu-items a{
    display: block;
    color: #af8790;
    transition: all 300ms;
    font-size: 14px;
    font-family: system-ui;
}

.active-menu-item a{
    transform: scale(1.15) translateX(5px);
    color: #450818;
}

.active-vineta{
    width: 30px;
    background-color: #450818;
}

.menu-items h5:hover a{
    transform: scale(1.15) translateX(5px);
    color:#450818;
}

.menu-item:hover .vineta{
    width: 30px;
    background-color:#450818;
}

.menu-items h5{
    cursor: pointer;
    transition: all 300ms;
}


