footer {
    background-color: #313131;
    text-align: center;
    color: white;
    padding: 1rem;
    display: grid;
    grid-template-rows: auto auto auto;
    text-align: center;
    font-size: 0.5rem;
}

.footerLower {
    width: 50%;
    margin : auto;
    opacity: 60%;
}

footer hr {
    width: 100%;
}

.footerUpper {
    display: grid;
    grid-template-columns: 1fr 10% 10% 1fr;
    align-items: center;
}

footer img {
    width: 5rem;
    justify-self: center;
}

footer ul header {
    font-size: 1rem;
    font-weight: 500;
}

.footerContacts {
    display: grid;
    grid-template-areas: 
    "header header"
    "content1 content2";
}

.footerContacts header {
    grid-area: header;
    font-size: 1rem;
    font-weight: bold;
}

.footerContacts ul header {
    font-size: 1rem;
    font-weight: 500;
}


.footerContacts.osztaly {
    grid-area: content2;
}

.footerContacts.suli {
    grid-area: content1;
}

footer li {
    list-style: none;
    opacity: 60%; 
}

@media (orientation: portrait) {
    footer {
        display: none;
    }
}