html
{
  font-size: 14px;
}

@media (min-width: 768px)
{
  html
  {
    font-size: 16px;
  }
}

html
{
  position: relative;
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  overflow-x: hidden;
}

body
{
    display: grid;
    grid-template: "bg" 0
        "navbar" auto
        "main" 1fr
        "footer" auto/ 1fr;
    height: 100%;
}

.background
{
    grid-area: bg;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #75afe1, #2a3160) no-repeat 0 0 / 100vw 100vh fixed;
    z-index: -1;
}

a
{
    cursor: pointer;
}

.navbar
{
    grid-area: navbar;
    /*display: grid;
    grid-template: "logo label reports sign-in sign-up" 64px / auto 1fr 1fr;*/

    display: flex;
    align-items: center;

    place-items: center;
    background: #fff;
    width: 100%;
    height: 64px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.navbar .title
{
    line-height: 0;
    margin: 0 auto 0 24px;
    flex-shrink: 0;
}

.navbar .label
{
    line-height: 1.2em;
    font-size: 1.2em;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0 0 0 24px;
}

.navbar .sign-in
{
    margin: 0 1.6vw 0 0;
    padding: 0.6em 1.1em;
    /*line-height: 1em;*/
    color: #fff;
    text-transform: uppercase;
    background: #30345c;
    border-radius: 3px;
    font-weight: 600;
    position: relative;
}

.navbar .text-link
{
    margin: 0 1.6vw 0 0;
    padding: 0.6em 1.1em 0.6em 0;
}

.navbar .text-link.reports
{
}

.navbar .text-link.account
{
}

.navbar .sign-in.up, .navbar .sign-in.out
{
}

.navbar .sign-in::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    opacity: 0;
    background: rgba(255,255,255,0.05);
    transition: opacity 0.2s ease-out;
}

.navbar .sign-in:hover::after,
.navbar .sign-in:focus::after
{
    opacity: 1;
}

.main-container
{
    width: 100%;
    /*flex-grow: 1;*/
    grid-area: main;
}

.page-container
{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.site-footer
{
    grid-area: footer;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 12px 0;
    color: #fff;
    background: #222;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;
}

.glassy-window
{
    background: rgba(255,255,255,1);
    /*background: rgba(255,255,255,0.1);*/
    box-shadow: 0px 0.2px 2.1px rgb(0 0 0 / 2%), 0px 0.5px 5.2px rgb(0 0 0 / 2%), 0px 1.1px 10.6px rgb(0 0 0 / 3%), 0px 2.2px 21.9px rgb(0 0 0 / 3%), 0px 6px 60px rgb(0 0 0 / 5%);
}

.button
{
    color: #fff;
    background: #30345c;
    display: block;
    text-align: center;
    /*color: #000;
    background: #fff;*/
    max-width: 400px;
    width: 90%;
    padding: 1em 0;
    margin: 16px auto;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 0.2px 0.4px rgb(0 0 0 / 2%), 0px 0.5px 1px rgb(0 0 0 / 2%), 0px 1.1px 2.1px rgb(0 0 0 / 3%), 0px 2.2px 4.4px rgb(0 0 0 / 3%), 0px 6px 12px rgb(0 0 0 / 5%);
}