
:root {
    --clr_h: 195;
    --hvr_h: 215;
}

body {
    margin: 0px;
    padding: 0px;
    min-height: 398px;
    background-color: hsl(var(--clr_h),92.5%,17.5%);
    color: hsl( var(--clr_h),92.5%,72.5% );
}
header {
    cursor: default;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9;
    margin: 0px;
    height: 122px;
    overflow: auto;
    text-align: center;
    font-size: 1.25em;
    font-weight: 600;
    background-color: hsl(var(--clr_h),95%,85%);
    color: hsl( var(--clr_h),92.5%,17.5% );
    border-radius: 0px 0px 3.5rem 3.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.125);
    transition: 0.2s ease-in-out;
}
header:hover {
    background-color: hsl(var(--clr_h),92.5%,87.5%);
    color: hsl( var(--hvr_h),92.5%,17.5% );
    box-shadow: 0 5px 15px rgba(0,0,0,0.175);
}
header *.title {
    padding-top: 10px;
    font-size: 1.5em;
    line-height: 1.5em;
}

footer {
    cursor: default;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 8;
    margin: 0px;
    height: 62px;
    overflow: auto;
    padding-top: 8px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 1em;
    line-height: 1.2em;
    background-color: hsl( var(--clr_h),92.5%,85% );
    color: hsl( var(--clr_h),92.5%,25% );
    border-radius: 2.5rem 2.5rem 0px 0px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.125);
    transition: 0.2s ease-in-out;
}
footer:hover {
    background-color: hsl(var(--clr_h),92.5%,87.5%);
    color: hsl( var(--hvr_h),92.5%,17.5% );
    box-shadow: 0 -5px 15px rgba(0,0,0,0.175);
}
.contents {
    position: fixed;
    width: 100%;
    margin: 0px;
    overflow: auto;
    padding: 20px 30px;
    background: transparent !important;
}
