.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;

    padding: 2rem 8%;

    background: #030812;
    color: #91a8c4;
}

.site-footer strong {
    display: block;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.site-footer p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    gap: 1.5rem;
}

.site-footer a {
    color: #91a8c4;
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    color: #00a6ff;
}

@media (max-width: 850px) {
    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer nav {
        justify-content: center;
    }
}
