@import url("/public/css/colors.css");
@import url("/public/css/fonts.css");
@import url("/public/css/bubbles-border.css");
@import url("/public/css/rouge.css");

body {
    color: var(--tfi-black);
    background-color: var(--tfi-cream);
    align-content: center;
    
    font-family: aaux next;
    font-weight: normal;
    font-style: normal;
    font-size-adjust: from-font;
    font-size: 26px;

    padding: 0;
}

.wrapper {
    min-height: calc(100vh - 12em);
    margin: auto;
    max-width: 80ch;
    min-width: 50ch;
}

p {}

h1, h2, h3, h4, h5, b {
    font-weight: bold;
    text-decoration: underline;
    margin: 1em 0;
}

h1 + hr, h2 + hr, h3 + hr, h4 + hr, h5 + hr {
    margin-top: -1.5em;
}

h1.title {
    margin-top: 0;
}

.hero {
    display: block;
}

.hero a {
    display: block;
    text-decoration: none;
    color: var(--tfi-black);
}

#logo {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    height: 120px;
}

.wrapper .main img {
    max-width: 50ch;
}

a {
    color: var(--tfi-blue);
}

.subheading {
    background: var(--tfi-grey);
    border-left: solid;
    font-style: italic;
    padding: 1em;
}

.mb-1 {
    margin-bottom: 1em;
}


code {
    font-family: monospace;
    font-size-adjust: 0.4;
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */ 
    code {
        font-size-adjust: 0.3;
    }
}

pre code {
    min-width: 40em;
}

blockquote {
    border-left: var(--tfi-dark-grey) 0.5em solid;
    background: var(--tfi-light-grey);
    padding: 0.25em 1em;
    font-style: italic;
}

path {
    stroke-width: 15px;
    fill: transparent;
}

.yellow {
    stroke: var(--tfi-yellow);
}

.red {
    stroke: var(--tfi-orange);
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex; /* For centering the spinner */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.spinner {
    width: 50px;
    height: 50px;
}

.hidden {
    display: none !important;
}
