#error {
    margin: 30vh auto 0 auto;
    width: fit-content;
    text-align: center;
    line-height: 1.5;
    font-family: var(--bc-ff-heading);
    font-weight: 100;
    color: var(--bc-clr-text-600);
}
#error::first-line {
    font-size: var(--bc-fs-700);
    font-weight: 800;
}
#error:empty {
    display: none;
}

#contentLoader {
    border-top: 3px solid var(--bc-clr-primary-400);
    border-right: 1px solid transparent;
    border-radius: 5rem;
    margin: 30vh auto 0 auto;
    display: block;
    width: 5rem;
    aspect-ratio: 1 / 1;
    animation: contentLoader 1s infinite;
}
@keyframes contentLoader {
    from {rotate: 0deg}
    to {rotate: 360deg}
}

.container {
    margin: 0;
    padding: 2rem;
    max-width: none;
}