body {
    font-family: Arial, sans-serif;
    background-color: #151516;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card-container {
    display: flex;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.card img:hover {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

.category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
    color: #333;
}

.author {
    font-size: 14px;
    color: #888;
}
