@import url('./reset.css');
@import url('./variables.css');
@import url('./layout.css');
@import url('./components.css');

/* DEFAULT STYLINGS */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--grey-100);
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

.padding-heading {
    padding: 2rem 2.25rem 1.5rem 2.25rem;
}

h2 {
    font-weight: 600;
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: var(--primary-90);
}

b {
    font-weight: bold;
}

.font-semibold {
    font-weight: 600;
}

.contents-only {
    display: contents;
}

.sr-only {
    border-width: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    left: 0;
    top: 0;
}

.small-sr-only {
    @media screen and (max-width: 480px) {
        border-width: 0;
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        left: 0;
        top: 0;
    }
}

.card {
    border-radius: 0.25rem;
    border: 1px solid var(--grey-40);
    padding: 1rem;
}

[x-cloak] { display: none !important; }