.main-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 98;
}

.footer-site-link{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo{
    width: 50px;
    margin: 20px 0;
}

.footer-site-name{
    transform: translateX(5px);
}

.about-us{
    text-align: center;
}

.about-us > h2{
    padding: 8px 0;
}

.footer-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    padding: 1rem 0;
}

.footer-section  h2 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section  h2::after {
    content: '';
    width: 6.6rem;
    height: .2rem;
    background: #ff0000;
    position: absolute;
    top: 2.5rem;
    left: 0;
}

.icon-links {
    text-decoration: none;
    cursor: pointer;
}

.theme-selection-div{
    margin: 1rem;
    align-self: center;
}

.theme-selection-div > label{
    font-size: 24px;
    font-weight: bold;
    border-bottom: 5px;
}

.theme-selection-div > select{
    padding-left: 3px;
    width: 120px;
    height: 28px;
    border-radius: 8px;
    font-size: 15px;
}

.footer-item-social {
    margin: 1rem;
}

.footer-item-social > ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.footer-item-social > ul >li {
    margin-right: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .2s linear;
}

.footer-item-social > ul > li:hover {
    transform: scale(1.4);
    transition: all .2s linear;
}

@media screen and (max-width: 320px) {

    .footer-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 2rem;
    }
    
}