@import url(https://fonts.bunny.net/css?family=abril-fatface:400);

html, body {
    height: 100%;
}

body > .container {
    max-width: 960px;
}

.logo {
    font-family: 'Abril Fatface', Times, serif;
    &.h1 {
        @media screen and (max-width: 768px) {
            font-size: 3em;
        }
        font-size: 5em;
        text-decoration: none;
    }
}

.issue-number {
    font-family: 'Abril Fatface', Times, serif;
}

article > p:last-child {
    margin-bottom: 0;
}
article {
    ol {
        margin: 2em 0;
        li:not(:last-child) {
            margin-bottom: 1.5em;
        }
    }
}

[data-bs-theme="dark"]  {
    header .nav-link {
        color: #fff;
        &:hover {
            text-decoration: underline;
        }
    }

    .nav-tabs .nav-link {
        color: #fff;
    }
}

form {
    .required::after {
        content: " *";
        color: #b02a37;
    }
}

.form-signin {
    max-width: 360px;
    padding: 1rem;
}

.overflow-md-x-scroll {
    @media screen and (max-width: 768px) {
        overflow-x: scroll;
    }
}
