/*
Theme Name:     BlankSlate Child
Theme URI:      https://example.com/
Description:    A child theme of BlankSlate
Author:         Your Name
Author URI:     https://example.com/
Template:       blankslate
Version:        1.0.0
*/

/* GENERAL */

body {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    position: relative;
}

a {
    color: unset;
    text-decoration: none;
    line-height: 1;
}

i, em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

footer {
    display: flex;
    gap: 10px;
    background-color: #000A20;
    color: #fff;
    justify-content: center;
    padding: 10px;
    font-size: 1rem;
    letter-spacing: 5%;
}

.footer-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

footer a:hover {
    color: #01BED4;
}

@media screen and (max-width: 767px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
    }

    .desktop-only {
        display: none;
    }
}
