
body{
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    height: 270px;
    width: 370px;
    /* background-color: brown; */
    display: flex;
    justify-content: space-between;
}
.box a{
    display: inline-block;

}

.box .box1{
    height: 100%;
    width: 46%;
    /* background-color: chartreuse; */
    box-shadow: 1px 1px 6px 5px rgb(160, 160, 160);
}
.box1 a{
    display: block;
    text-decoration: none;
    color: black;
}
.box1 a .btn{
    height: 100%;
    width: 100%;
    /* background-color: palevioletred; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn .image{
    height: 150px;
    width: 150px;
    border-radius: 50%;
}
.btn .image img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
}


