* {
    box-sizing: border-box;
    font-family: 'Segoe UI',sans-serif;
}

body {
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: white;
    border: 1px solid black;
    max-width: 390px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 6px 6px 6px 6px black;
    transition: transform 0.3s ease;
    
}

.card:hover {
    transform: scale(1.02);
}

.card-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 16px;
}

.tag {
    background-color: #f4d04e;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
}

.date {
    margin-left: 3px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
}

.title {
    font-size: 20px;
    font-weight: 800;
    margin: 10px 0;
    cursor: pointer;
}

.title:hover {
    color: #f4d04e;
}

.description {
    color: gray;
    font-size: 15px;
    font-weight: 500;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.author-name {
    font-weight: bold;
    font-size: 15px;
}