html, body {
    background-color: #ff7f00;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
}

footer {
    align-items: center;
    background-color: #b43300;
    color: #ff7f00;
    display: flex;
    font-family: "Madimi One", sans-serif;
    font-size: 16px;
    height: 48px;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}

footer .contact {
    display: flex;
    flex: 1;
    padding-left: 12px;
}

footer .contact a {
    color: #ff7f00;
    text-decoration: none;
}

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

footer .socials {
    display: flex;
    flex: 1;
    gap: 16px;
    justify-content: flex-end;
    padding-right: 12px;
}

footer iconify-icon {
    color: #ff7f00;
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

@media (max-width: 600px) {
    footer .contact {
        padding-left: 5px;
    }

    footer .socials {
        padding-right: 5px;
    }
}
