h1 {
    text-align: center;
}
h2 {
    margin: 0;
    text-align: center;
    line-height: 1.3;
    margin-top: 10px;
    font-size: 1.2rem ;
    text-wrap: pretty;
}
p {
    margin: 0;
    font-size: 16px;
}
main {
    max-width: 100%;
}
.blog-cont {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    max-width: 1024px;
    margin: auto;
    height: max-content;
    gap: 32px;
}
article {
    width: max-content;
}
article a {
    text-decoration: none;
    cursor: pointer;
    color: black;
    width: 300px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    height: 400px;
    border: dotted 2px black;
    border-radius: 16px;
    padding-bottom: 16px;
    background-color: #15679310;
}
article a:hover {
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.22);
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.22);
}
article img {
    width: inherit;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.tags {
    list-style: none;
    padding: 0;
    margin:0px 0px 32px 0px;
}
.tags li {
    margin-right: 6px;
    line-height: 2.5;
    display: inline;
    font-size: 16px;
    padding: 6px 9px 4px 9px;
    background-color: #15679333;
    border-radius: 16px;
    text-wrap: nowrap;
}
.date {
    line-height: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}
