:root {
    --font-brand: "Share Tech Mono", monospace;
    --content-color: rgb(48, 48, 48);
}

* {
    font-family: var(--font-brand);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: var(--content-color);
    text-decoration: none;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow-y: scroll;
}

#no-mobile {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 100;
    background-color: white;
}

#no-mobile h2 {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 1rem;
}

#logo-mobile {
    height: 4rem;
    aspect-ratio: 1 / 1;
}

footer {
    display: flex;
    justify-content: center;
    padding: .5rem;
    background-color: white;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-grow: 1;
    padding: 2rem;
    width: 90%;
    z-index: 5;
}

#main-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 .3rem 5px rgba(0, 0, 0, .3);
    background-color: white;
}

#title-div, #logo-div, #logout-div {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
}

#brand-title {
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: -5px;
}

#logo-div {
    justify-content: center;
}

#logo {
    height: 3rem;
    aspect-ratio: 1 / 1;
}

#logout-div {
    font-size: 3rem;
    justify-content: end;
}

#logout-icon { 
    font-size: 2rem;
}

#logout-icon:hover { scale: 1.1; }
#logout-icon:active { scale: 0.9; }

#dev-link { text-decoration: none; }
#dev-link:hover { text-decoration: underline; scale: 1.1; }

#err-prompt {
    position: absolute;
    background-color: rgba(106, 106, 106, 0.7);
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    z-index: 30;
}

#err-msg {
    color: white;
    text-align: center;
}

/* Gral media queries */
@media (max-width: 700px) {
    #no-mobile  {
        display: flex;
    }
}