* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    /* display: flex; */
    text-align: center;
}

header p span {
    background-color: black;
    color: white;
    padding: 0 2px;
}

main {
    padding: 0 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
}

.post-card-section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 3;
}

.post-card {
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.post-card-hero-img {
    flex: 1;
}

.post-card-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content {
    flex: 2;
    padding: 1rem .5rem;
}

.sidebar {
    flex: 1;
}

.sidebar-post {
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.sidebar-post-img {
    /* flex: 1; */
    height: 200px;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content {
    flex: 2;
    padding: 0 .5rem;
    margin: 1rem 0;
}

.sidebar-post-content p{
    font-size: 14px;
    color: gray;
}

footer {
    background-color: gray;
    padding: 2rem 1rem;
    color: white;
}

footer button {
    background-color: black;
    color: white;
    border: none;
    padding: .5rem 1rem;
}

footer button:disabled {
    background-color: #444;
}

.footer-btns {
    margin-bottom: 1rem;
}