*{
    margin: 0;
    padding: 0;
}
body{
    font-family:sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc851;
}

.sidebar{
	position:absolute;
	left:0;
	/*top:10%;*/
	top:0;
    width: 20%;
    height: 50%;
    background-color: #ff3f34;
    padding: 20px;
    box-sizing: border-box;
    color : #fff;
    overflow: hidden;
    border-radius: 0px 0 0 0px;
    transition: width .75s ease;
    margin-left: 0px;
 

}
.header{
	position:absolute;
	left:0;
	top:0;
    width: 100%;
    height: 10%;
    background-color: green;
   

}

.sidebar.hover{
    width: 200px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px 10px;
}
li{
    padding: 10px 10px;
    border-bottom: 2px solid #ff6348;
    border-radius: 5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
li:hover{
    background-color: #ff6348;
}
.nav-link{
    display:inline-flex;
    column-gap: 1rem;
    color:inherit;
    text-decoration: none;
}
.item-text{
    padding-left: 5rem;
}
.attribute{
    position: absolute;
    bottom: 10px;
}