body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
    background-attachment: fixed;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 270px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info {
    padding: 15px;
    font-size: 14px;
    color: #333;
}

.info p:first-child {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn {
    border: 1px solid #9c27b0;
    background: transparent;
    color: #9c27b0;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn.active {
    background: #9c27b0;
    color: white;
}

.btn:hover {
    background: #9c27b0;
    color: white;
}
