.block{
    max-width:400px;
    height: 600px;
    background-color: antiquewhite;
    margin: 50px;
    padding: 50px;
    border: 1px groove #000000;
    border-top: 10px double #00b418;
    border-width: 10px;
    border-style: dotted;
    border-color: blue;
    border-bottom-color: aqua;
    /* border-radius: 30px; */
    border-top-left-radius: 10px;
    border-top-right-radius: 30px;
    overflow: auto;
}
.img{
    width: 600px;
    border: 10px solid #800404a9;
    border-radius: 30px;
    box-shadow: 10px 15px 20px 30px #00b418;
    margin-bottom: 50px;

}
*{
    box-sizing: border-box;
}
.block1{
    display: inline-block;
    max-width: 300px;
    background-color: #cab200f9;
    padding: 20px;
    border-radius: 30px;
    border: 2px solid #000000;
    box-shadow: inset 0 0 0 0 #000000;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.main_block{
    background-color: beige;
    max-width: 1300px;
    max-height: 500px;
    overflow: auto;
    border-top-left-radius: 30px;
    border-bottom-left-radius:30px ;
    
}