*{
    margin: 0px;
    font-family: sans-serif;
}
.mainsection{
    display: grid;
    width: 360px;
    grid-template-columns: 100px 260px;

}
h1{
    margin-top: 5px;
    margin-left: 5px;
    font-size: 20px;
}
h2{
    margin-left: 10px;
    font-size: 16px;
    margin-top: 5px;
}
p{
    margin: 10px;
    font-size: 14px;
    margin-left: 10px;
}
a{
    text-decoration: none;
    color: pink;
}
img{
    margin-left: 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.section1{
    display: grid;
    background-color: maroon;
     border-right: 2.5px red solid;
     height: 100vh;
     

}
.section1menuheading{
    color: red;
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
   
    
}
.section1menuitem{
    color: pink;
    display: grid;
    font-size: 18px;
    font-weight: 600;
    justify-items: center;
    align-items: center;
    margin: 7px;
}
.section1menuitem:hover{
    background-color: brown;
}

.section2{
    display: grid;
    grid-template-columns: 260px;
    grid-template-rows: 80px;
    height: 100vh;
    overflow-y: hidden;
    overflow: scroll;

    

}
.section2child1{
    display: grid;
    background-color: maroon;
    border-bottom: solid 2.5px red;
    
}
.heading{
    color: pink;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 25px;
    font-weight: 800;
}
.saying{
    color: pink;
    display: grid;
    font-size: 18px;
    justify-items: center;
    align-items: center;
}