html, body{
    margin: 0;
    padding: 0;
    font-family: 'Assistant', sans-serif;
    text-align: center;
    font-size: 18px;
    scroll-behavior: smooth;
}

/* Global styles */
a{
    color: rgb(93,19,22);
    text-decoration: underline;
}
.spacer{
    height: 1.5em;
}
.timestamp{
    color: #666;
    font-size: 0.8em;
    margin-top: -1em;
}

/* Top floating menu */
#menu{
    font-size: 15px;
    margin: 0;
    padding: 0.5em 1em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    background-color: rgb(233,48,55);
    color: #fff;
}
#menu a{
    color: #fff;
    text-decoration: none;
}
#menu ul{
    list-style: none;
    display: none; /* Hidden for mobile */
}
#menu li{
    display: inline-block;
    margin: 0 1em;
}
#menutitle{
    font-size: 2em;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0.8em 0;
}
#menu img{
    max-width: 400px;
    width:60vw;
    padding: 0.5em 0;
}

/* Footer */
#footer{
    padding: 0.3em 1.2em;
    font-size: 13px;
}
#footer .legal{
    font-size: 11px;
    color: #aaa;
}

/* Main feature content */
header{
    width: 100%;
    background-color: rgb(233,48,55);
    color: #fff;
    background-image: url(headerbg2crop.jpg);
    background-size: cover;
    background-position: center bottom;
    height: 30vh;
}
header h1, header img, header .button{
    display: none;
}
.siteblock{
    padding: 2em;
}
.siteblock h1{
    font-weight: 800;
    margin-top: 0;
}
.siteblock-shade{
    background-color: rgb(233,48,55);
    color: #fff;
}
.siteblock-statement{
    text-align: left;
}

/* Buttons */
.button, .accordion{
    font-size: 0.9em;
    display: inline-block;
    margin: 1em auto;
    padding: 1em 1.6em;
    background-color: rgb(233,48,55);
    color: #fff;
    border: 1px solid rgb(139,28,33);
    box-shadow: 0 0 1em rgba(0,0,0,0.1);
    font-weight: 600;
    min-width: 5em;
}
.siteblock-shade .button{
    background-color: #fff;
    color: rgb(93,19,22);
    font-weight: 700;
}


/* Accordion styles */
.accordionwrapper{
    border: 1px solid rgb(139,28,33);
    margin: 1em auto;
    max-width: 50em;
}
.accordion {
    display: block;
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
    border: none;
    margin: 0;
  }
.active, .accordion:hover {
    background-color: rgb(139,28,33);
}
.accordion:after {
    content: '\02795';
    color: #fff;
    font-size: 0.8em;
    float: right;
    margin-left: -4em;
    margin-top: 0.2em;
  }
  .active:after {
    content: "\2796";
  }
.panel {
    padding: 0 18px;
    font-size: 0.9em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}



/* Adjust for desktop: */
@media only screen and (min-width: 768px) {
    
    html, body{
        font-size: 20px;
    }

    /* Swap top menu for logo */
    #menu ul{
        display: block;
    }
    /*#menutitle, #menu img{
        display: none;
    } */
    .homepagemenu img{
        display: none;
    }
    header{
        height: auto;
    }
    header h1{
        display: block;
        padding: 20vh 0;
        margin: 0;
        font-size: 4em;
        text-transform: uppercase;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 0.05em;
        text-shadow: 0 0 1em #000;
    }
    header img{
        display: block;
        margin: 0 auto;
        padding: 17vh 0 4vh;
    }
    header .button{
        display: inline-block;
        margin-bottom: 17vh;
    }
    .siteblock{
        padding: 4em 5em 5em;
    }
    #footer{
        font-size: 15px;
    }
  }