/*
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 a:hover {
    color: #01BED4;
}

@media screen and (max-width: 767px) {
    footer {
        font-size: 0.9rem;
    }
}