a {
    text-decoration: none;
}

.container {
    display: flex;
    gap: 1rem;
}
.card {
    max-width: 150px;
    /* background-color: aqua; */
    border-color: black;
    border-style: solid;
    border-radius: 1rem;
    height: fit-content;
}

.card-image {
    max-width: 150px;
    justify-content: center;
    border-top-left-radius: 0.85rem;
    border-top-right-radius: 0.85rem;
}

.card-title {
    text-align: center;
}

.card-date {
    font-size: 0.7rem;
    text-align: center;
    text-decoration: none;
}
@media screen and (max-width: 472px) {
    .container {
        display: flex;
        flex-direction: column-reverse;
    }
    .card {
        margin: 0 auto;
        margin-bottom: 1rem;
    }

    h1 {
        text-align: center;
    }
}
