*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.image
{
    height: 150px;
    width: 150px;
    /* border: 2px solid rgb(6, 86, 139); */
    border-radius: 50%;
    object-fit: contain;
    position: relative;
    /* border: 2px solid rgb(42, 162, 241); */
}
.main
{
    padding-top: 45px;
}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(tushar.jpg);
    background-size:cover;
}
.item{
    display: flex;
    /* border: 2px solid red; */
    justify-content: center;
    align-content: center;
}
.card{
    display: flex;
    width: 370px;
    background-color: rgba(175, 174, 172, 0.652);
    border-radius: 17px;
    justify-content: center;
    align-content: center;
}
.icons
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
a:hover{
    scale: 1.25;
}
.image:hover{
    scale: 1.5;
}