h1{
    text-align: center;
    color: rgb(28, 29, 29);

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}
.body{
   /* background-image: url(https://img.freepik.com/free-photo/abstract-flowing-neon-wave-background_53876-101942.jpg?semt=ais_rp_progressive&w=740&q=80);*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}   
.body h1{
    text-align: center;
    margin: 30px 0;
    color: #333;
}
.card:hover{
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}
.card img{
    height: 200px;
    object-fit: cover;
}
.card-title{
    font-weight: bold;
    text-align: center;
}
.card .btn{
    margin: 5px;
}

.card button{
    background-color: green;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
}
.footer{
    margin-top: 40px;
    padding: 15px;
    background-color: #222;
    color: white;
    text-align: center;
}

.card{
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
}
.card button:hover{
    background-color: darkgreen;
}