html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

:root {
    --default-font-size: 16px;
    --global-palette1: #000;
    --global-accent1: #006cb7;
    --bg-color: #006cb7;
}

ol, ul {
    list-style: none;
}

fieldset {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: 0
}

html, body {
    font-size: var(--default-font-size);
    line-height: 1.6;
    color: var(--global-palette1);
}

a {
    color: var(--global-palette1);
    transition: all 0.2s ease-in-out;
}

i {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;;
}

::-moz-selection {
    color: #fff;
    background: #2058e5;
    opacity: 1;
}

::selection {
    color: #fff;
    background: #2058e5;
    opacity: 1;
}

.bg-color {
    background-color: var(--bg-color);
}

.fw {
    width: 100%;
}

.fh {
    height: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

#help-desk-container {
    display: flex;
    width: 100%;
    max-width: 760px;
    background-color: #fff;
    border-radius: 9px;
    justify-content: center;
    flex-directioN: column;
    padding: 2rem;
    gap: 1.25rem;
    align-items: flex-start;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.file {
    position: relative;
}

.file svg {
    position: absolute;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a img {
    display: block;
    max-width: 400px;
    width: auto;
}

#__app {
    display: grid;
    justify-content: center;
    align-items: center;
}

.box-shadow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.title {
    line-height: 1.2;
}

.title h1 {
    font-size: 2.8rem;
}

.text-align-center {
    text-align: center;
}

.contact-info a {
    color: #000;
    display: inline-flex;
    align-items: center;
    text-align: left;
}

.contact-info a svg {
    height: 30px;
    width: 30px;
    margin-right: 1rem;
    stroke: var(--global-accent1) !important;
}

.file .tw {
    color: #fff;
    background-color: var(--global-accent1);
    padding: 0.8rem 1.1rem;
    border-radius: 3px;
    font-size: 1.25rem;
    display: inline-flex;
}

.file .tw:hover {
    background-color: #000;
    color: #fff;
}

.contact-info a:hover {
   color: var(--global-accent1);
}

.instructions a {
    text-decoration: underline;
    color: var(--global-accent1);
}

.ref-container {
    right: 10px;
    bottom: 0;
    padding: 5px;
}

.ref-container a:hover {
    color: var(--global-accent1);
}


@media screen and (max-width: 900px) {
    html, body {
        font-size: 15px;
        background-color: #fff;
    }

    #__app {
        background-color: #fff;
    }

    #help-desk-container {
        width: 100%;
        border-radius: 0;
        gap: 1rem;
    }

    .logo a img {
        max-width: 70%;
    }

    .title h1 {
        font-size: 2rem;
    }

    .box-shadow {
        box-shadow: none;
    }

    .contact-info a svg {
        height: 20px;
        width: 20px;
    }

    .file .tw {
        font-size: 1rem;
    }
}