*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}
.navbar{
    background-color:#26B59F;
    position:sticky;
    top:0px;
}
ul{
    list-style-type: none;
    display:flex;
    gap:20px;
    justify-content: center;
    padding:10px;
}
li{
    color:white;
    font-size: 20px;
}
body{
    background-color:#85E2D4;
}
.container{
    width:98%;
    display:grid;
    grid-template-columns: 30% 70%;
    gap:20px;
    margin-top:20px;   
    height:calc(100% - 60px);
    padding:10px 10px;
    box-sizing:border-box
    
}
.left{
    border-radius:20px;
    display:grid;
    grid-template-rows: 55% 45%;
    gap:20px;
    /* height:100%; */
}
.right{
    border-radius:20px;
    display:grid;
    grid-template-rows: 1fr 2fr  0.7fr;
    gap:20px;
    height:100%;

}
.profile{
    border:2px solid white;
    border-radius:20px;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    height:300px;
}
.calendar{
    border:2px solid white;
    border-radius:20px;
    height:280px;
    background-color: white;
    padding:20px;
}
img{
    border-radius:50%;
}
.cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
    height:100%;
}
.card{
    background-color: white;
    border-radius:20px;
    padding:20px;
    height:100%;

}
.lifestyle{
    background-color: white;
    border-radius:20px;
    padding:20px;
    height:100%;

}
.report{
    background-color: white;
    border-radius:20px;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
