*{
    /* margin: 10px; */
    /* padding: 10px; */
}

.header{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 150px;
    width: 100%;
    /* background-color: brown; */
    align-items: center;
}
.body{
    display: grid;
    grid-template-rows: 15% 15% 15% 15% 15% 15%;
    grid-template-columns: 20% 20% 20% 20%;
    row-gap: 30px;
    column-gap: 30px;
    width: 100%;
    height: auto;
    padding-top: 20px;
    
}
.body1{
display: flex;
flex-direction: column;
/* overflow: auto; */
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 1;
grid-row-end: 3;
padding: 10px;
box-shadow: 2px 6px 5px 5px gray;
/* background-color: aqua; */
}
.body1-2{
    display: flex;
    justify-content: space-between;
}
.body1-3{
    display: flex;
    justify-content: space-evenly;
    width: 30%;
    height: 30px;
    margin-top: 20px;
}
.body1-4{
    height: 30px;
    margin-top: 20px;
    cursor: pointer;
}
.body-1{
    width: 100%;
    height: 50%;
}
.body1-4:hover{
    color: white;
    background-color: brown;
}
.com{
    width: 10%;
    height: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body2{
display: flex;
flex-direction: column;
grid-column-start: 4;
grid-column-end: 6;
grid-row-start: 1;
grid-row-end: 3;
/* overflow: auto;
background-color: rgb(48, 54, 54);
box-shadow: ; */
box-shadow: 2px 3px 3px 5px gray;
padding: 30px;
}
.body-2{
    width: 100%;
    height: 60%;
    /* padding-left: 10px; */
    padding-right: 20px;
}
.body3{
display: flex;
flex-direction: column;
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 3;
grid-row-end: 5;
/* overflow: auto;
background-color: aqua; */
padding: 10px;
box-shadow: 2px 7px 5px 5px gray;
}
.body4{
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 3;
    grid-row-end: 5;
    overflow: auto;
    /* background-color: rgb(117, 136, 136); */
    /* display: none; */
    margin-left: 20%;
    margin-right: 20%;
    padding: 8px;
}
.body4-9{
    display: flex;
    justify-content: space-evenly;
    height: 20%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.body4-9:hover{
    background-color: darkgrey;
    color: azure;
}
.body-4{
    width: 30%;
    height: 90%;
}
.body4-8{
  
}
.body5{
    grid-column-start: 3;
    grid-column-end: 6;
    grid-row-start: 5;
    grid-row-end: 6;
    box-shadow: 0px 90px 30px 2px gray;
    height: 180px;
    padding: 5px;
}
.btn{
    border: none;
    background-color: rgb(179, 189, 189);
    margin: 3px;
}
.btn:hover{
    background-color: black;
    cursor: pointer;
    color: white;
}
.btn1{
    background-color: black;
    color: white;
}
.footer{
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 6;
    grid-row-end: 7;
    background-color: black;
    color: white;
    padding: 30px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.btn2{
    border: none;
    height: 40px;
    background-color: rgb(158, 167, 175);
    margin-right: 5px;
    width: 80px;
}
.btn3{
    border: none;
    height: 40px;
    width: 80px;
    background-color: rgb(140, 172, 201);
}
.btn2:hover{
    background-color: rgb(133, 29, 29);
    color: white;
    cursor: not-allowed;
}
.btn3:hover{
    background-color: rgb(18, 201, 97);
    color: white;
    cursor: pointer;
}