* {
    font-family: "Instrument Sans", sans-serif;
}

body {
    background-color: #0a0a0c;
    color: rgb(230, 230, 230);
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
}

svg {
    width: 100%;
    height: 100%;
}

main {
    min-height: 100vh;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-direction: row;
    padding-block: 4rem;
    padding-inline: 4rem;
}

@media screen and (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 1rem;
        padding-inline: 15vw;
        width: 100vw;
        align-items: end;
        box-sizing: border-box;
    }
}