/* this is all kinda messy, it was ripped from my other site and now I can't remember why I put half the stuff in here but it probably made sense at the time*/

:root{
    --background: rgb(213, 213, 225, 1);
    --shadowColor: rgb(106, 106, 138);
    --accentColor: rgb(255, 47, 134);
}

/* reset defaults */
*{
    margin: 0;
    padding: 0;
}
#header {
    background: var(--background);
    color: var(--shadowColor); 
    height: 50px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(4px, 2vw, 18px);
    position: fixed;
    width: 100%;
    z-index: 999; /*make sure its on top of everything else */
    border-bottom: 2px solid var(--accentColor);
    display: grid;
}

#content{
    position: fixed;
    top: 52px;  /*leave some space for the header */
    width: 100%;
    height: 100%;
    overflow: scroll;
    font-weight: normal;
    font-size: 1.3rem;
    padding: 0 0 15px 0;  /* a little space for the footer */
    background: var(--background);
    color: var(--shadowColor); 
    font-family: 'Abel', sans-serif;
    text-align: center;   
}

img {
max-width: 75%;
max-height: auto;
}

.notice {
    color: red;
    font-size: .9rem;
}
.text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#footer{
    position: fixed;
    bottom: 0;  /* align it to the bottom of the page */
    z-index: 999;
    width: 100%;
    text-align: center;
    font-size: small;
    color: grey;
    background-color: var(--background);
    border-top: 2px solid var(--accentColor);
}


