body {
    margin: 0;
    padding: 0;
    display: block;
    height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color-primary);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.main {
    display: block;
    min-height: 100vh;
    margin-bottom: 1rem;
}

.header, .footer {
    width: 100%;
}

.header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    height: 3rem;
    display: flex;
    align-items: center;
    position: fixed;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.footer {
    display: flex;
    border-top: 1px solid var(--border-color);
    background-color: var(--background-color);
}

.footer-column {
    display: inline-block;
    vertical-align: top;
    width: fit-content;
    margin: 1rem 3rem 1.5rem 3rem;
    line-height: 1.5rem;
    color: var(--text-color-secondary);
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
    color: var(--text-color);
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
    color: var(--text-color);
}

h3 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
    color: var(--text-color);
}

.soft {
    font-size: .8rem;
    margin: 0;
    color: var(--text-color-secondary);
}

.content {
    padding-top: 5rem;
    min-height: 100vh;
    margin: 0 10rem 0 10rem;
    width: 100%;
}

.login {
    width: 30rem;
    margin: auto;
}

.spacer {
    height: 2rem;
}

a {
    text-decoration: none;
    /* color: var(--text-color); */
    color: inherit;
    display: block;
    width: fit-content;
}

a:hover:not(.no-hover) {
    color: black;
}

a.link {
    font-size: 1rem;
    /* color: var(--text-color-primary); */
    /* text-decoration: underline !important; */
}

.link {
    cursor: pointer;
}

.link:hover {
    background-color: #e1e1e1;
}

.button {
    border: 1px solid var(--border-color);
    border-radius: .75rem;
    padding: 1rem;
    display: inline-block;
    backdrop-filter: blur(8px);
    color: inherit;
    transition: .3s;
}

.button:hover {
    backdrop-filter: blur(13px) brightness(.98);
    cursor: pointer;
}

.noselect {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.mobile-show {
    display: none;
}

.mobile-wrap {
    display: flex;
}

.fa-brands {
    width: 1rem !important;
}

.tile {
    border: 1px solid var(--border-color);
    border-radius: .7rem;
    padding: .5rem;
    margin-bottom: 1rem;
}


.inline-button {
    display: block;
    margin: 0 .25rem .5rem 0;
    padding: .5rem;
    transition: .3s;
    border-radius: var(--border-radius);
    max-width: fit-content;
    letter-spacing: .05rem;
    background-color: var(--primary-color) !important;
    background-image: var(--radial-signature-bg-img);
    color: #fcfcfc;
}

.inline-button:hover {
    cursor: pointer;
    /* background-color: rgb(34, 100, 173) !important; */
    color: #fcfcfc !important;
}

.inline-button a:hover {
    color: #fcfcfc !important;
}

.no {
    background-color: #949494 !important;
    cursor: not-allowed !important;
}

.no:hover {
    background-color: #656565 !important;
    cursor: not-allowed !important;
}

.tag {
    display: inline-block;
    border-radius: .7rem;
    padding: .25rem .5rem .25rem .5rem;
    margin-right: .5rem;
    font-size: .8rem;
    font-weight: bold;
    color: #fcfcfc;
}

.back_nav {
    position: relative;
    left: -3rem;
    top: .05rem;
    height: 0;
    font-size: 1.5rem;
    color: var(--text-color-secondary);
}

.main-container {
    display: flex;
    width: 66vw;
    margin: 0 auto;
    min-height: 100vh;
}
