footer {
    width: 100%;
    margin-top: 30px;
    padding: 2rem 0;
    border-top: 1px solid #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #333;
    color: rgb(212, 212, 212);
    text-align: center;
}

.footer-container{
    display: flex;
    justify-content: space-around;
}

.footer-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px 20px;
    align-items: start;
}

.footer-links-vertical, .footer-social{
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 10px;
}

.footer-main{
    color: gray;
    font-size: 13px;
    width: 100%;
    background: rgb(38, 38, 38);
    padding: 1rem 0;
    border-top: 1px solid rgb(82, 82, 82);
}

.footer-title{
    color: #8bc34a;
    font-size: 16px;
    font-weight: bold;
}

.footer-section-bottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section-bottom p{
    text-align: center;
}

.social-link{
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-post-item{
    display: flex;
    align-items: center;
    gap: 10px;
}


.footer-post-item img{
    width: 60px;
}

.post-content{
    display: flex;
    flex-direction: column;
    align-items: start;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 10px;
    }

}

footer a {
    color: white;
    text-decoration: none;
}