*{
    box-sizing: border-box;
}
#main{
    height: 760px;
    border-style: solid;
    display: flex;
}

#profile{
    width: 22%;
    height: 750px;
    border-style: solid;
    padding: 10px;
    color: blue;
}

#profile_img_div{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

#news_img_div{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#side{
    width: 78%;
    height: 750px;
    border-style: solid;
}

#menu{
    border-style: solid;
    background-color: black;
    color: white;
    padding: 10px;
}

#menu1{
    display: flex;
    justify-content: space-around;
    align-items: center;
} 

#menu2{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-style: solid;
    margin-bottom: 5px;
    margin: 10px;
    padding: 8px;
    border-radius: 10px;
}

.a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: bold;
    padding: 2px;
    transition-duration: 0.5s;
}

.a:hover{
    text-decoration: underline;
}

#img{
    height: 200px;
    width: 200px;
    border-radius: 10px;
    transition-duration: 0.5s;
}

#img:hover{
    transform: scale(1.05);
}

#profile_img{
    border-radius: 50%;
    height: 200px;
    width: 200px;
    border-style: groove;
    border-width: 5px;
    border-color: blue;
}

#show_data{
    /* display: grid;
    grid-template-columns: repeat(6,1fr); */
    gap: 20px;
    margin-top: 10px;
    height: 600px;
    overflow: scroll;
    padding: 10px;
}

#box{
    /* width: 200px; */
    border-style: solid;
    border-radius: 10px 0px 10px 0px;
    padding: 15px;
    margin-bottom: 10px;
}

#btn_div{
    display: flex;
    justify-content:space-between;
}

#btn{
    font-weight: bold;
    width:150px ;
    border-radius: 5px;
    letter-spacing: 2px;
    background-color: rgb(212, 255, 255);
    transition-duration: 0.5s;
}

#btn:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border-color: blue;
}