.navbar {
    /*position: fixed;*/
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    /*height: var(--nav-height);*/
    /*background: var(--bg-color);*/
    /* background: var(--nav-bg-color); */
    background: var(--card-background-color);
    border-bottom: var(--border-string);
    box-shadow: 0 4px 0 var(--border-color);
    z-index: 1000;

    transition: transform 0.2s ease-in-out;

    display: grid;
    grid-template-columns:
        minmax(2rem, 1fr)
        minmax(0, 1200px)
        minmax(2rem, 1fr);
}

.navbar__content {
    grid-column: 2;
    display: flex;
    justify-content: center;
    /*justify-content: space-between;*/
    align-items: center;
}

.navbar__branding {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
    font-family: "Datatype", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.nav--hidden {
    transform: translateY(-100%);
}

/*div.logo::before {*/
.logo {
    /*background-image: url("/assets/res-8e81c1b5.png");*/
    height: 100%;
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
}

.navbar__logo {
    height: 3.5rem;
    width: auto;
    margin-right: 1rem;
}

.navbar__content > .branding {
    /*grid-column: 2;*/
    display: flex;
    flex-direction: row;
    /*flex-direction: row;*/
    /*justify-content: space-between;
    align-items: center;*/
}

/*h1 {
  -webkit-text-stroke: 2px #fff;
  font-size: 2rem;
  text-align: center;
  color: transparent;
  font-family: sans-serif;
  font-style: italic;
  text-shadow:
    10px 10px 0px #66bbb2,
    15px 15px 0px #c53b3d,
    20px 20px 0px #6a2032,
    35px 35px 18px #1b1f33
  ;
  margin-top: 0px;
  margin-bottom: 20px;
}*/

.app_header {
    font-size: 2rem;
    color: #c53b3d;
    padding-top: 0px;
    font-family: 'DM Sans', sans-serif;
    text-shadow: 10px 10px 10px #1b1f33;
    -webkit-text-stroke: 0.4px #ff6b6b;
}

.app_header__subtext {
    font-size: 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-family: 'Josefin Sans', sans-serif ;
    letter-spacing: 0.089em;
    margin-left: 20x;
    text-shadow: 10px 10px 18px #1b1f33;
}



/*.container {
    display: grid;
    grid-template-columns:
        minmax(2rem, 1fr)
        minmax(0, 1200px)
        minmax(2rem, 1fr);
}*/
