/* Base styles: simple comments added by me to explain sections. */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: #F6F3F6;
    color: #5C475B;
}


main {
    flex: 1;
    padding-bottom: 20px; 
}


.post-link {
    text-decoration: none;
    color: inherit;
}


.post-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s;
    box-shadow: 0 4px 15px #5C475B;
    cursor: pointer;
}


footer {
    background-color: #5C475B;
    color: #F6F3F6;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    position: sticky;
    bottom: 0;
    z-index: 999;
}

.footer-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-container a {
    color: #A68CA5;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}


img{max-width:100%;height:auto;}
video{max-width:100%;height:auto;}