*{
    margin:0 ;
    padding: 0;
    box-sizing: border-box;
}

body,
html{
    width: 100%;
    height: 100%;
}

.card-img{
    height: 50px;
    width: 50px;
}



#cards{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    margin: 20px;
   
}

.card1{
    height: 250px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    border: 1px solid #000;
    border: none;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-inline: 20px;
   
}

.card1:hover,
.card-img:hover,
h2:hover,
h3:hover,
p:hover,
#card2:hover,
#card3:hover,
#main img:hover{
    transform: scale(1.1);
    transition: 0.3s;
    cursor: pointer;
    object-fit: cover;
}
 

h2{
    margin-top: 10px;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

h3{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}