*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}
html,body{
    height: 100%;
    width: 100%;
}
.main{
    height: 100%;
    width: 100%;
    background-color: rgb(9, 48, 48);
    padding: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
   
}
.card{
    height: 260px;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.card img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.bottom{
    height: 40%;
    width: 100%;
    background: linear-gradient(transparent, black);
    position: absolute;
    bottom: -40%;
    transition: all ease 0.5s;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom h3{
    font-size: 30px;
    color: white;
    font-weight: 200;
}
.bottom h4{
   
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}
.card:hover .bottom{
    bottom: 0%;
    background: v;
}
