body{
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 20px;
}

#id1{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sp{
    width: 250px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-align: center;
    transition: 0.3s;
}

.sp:hover{
    transform: translateY(-5px);
}

.sp img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sp h1{
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

input[type="button"]{
    display: block;
    margin: 0 auto 20px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="button"]:hover{
    background: #0056b3;
}