*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif ;
}

body{
    background-color: #f4f4f4;
}
.head img{
    width: 50px;
    border-radius: 50%;
}

.aside{
    transition: all .4s ease;
    padding: 10px;
    height: 100vh;
    width: 300px;
    background-color: #6a1b9a;
    color: #fff;
    position: fixed;
}
.head{ 
    margin-bottom: 30px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    height: 50px;
}
.head i{
font-size: 30px;
cursor: pointer;
}

.profile{
    display: flex;
    align-items: center;
}

.profile img{
    margin-right: 10px;
}
.options div{
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    margin-bottom: 5px;
    border-radius: 10px;
    font-size: 1.1rem;
}
.options div:hover{
    background-color: rgba(255, 64, 129, 0.254);
    transition: all .4s ease-in-out;
}

.options img, i{
height: 22px;
width: 22px;
margin-right: 10px;
padding: 0;
}

.options a{
    text-decoration: none;
    color: #FFFFFF;
}

/*MODIFICACIONES AL CERRAR EL MENU*/

.aside.active{
    width: 70px;
    transition: all .4s ease;

}

.aside.active .option,
.aside.active .profile{
display: none;
}

.aside.active .head i{
    margin: auto;
}

