@font-face {
    font-family: Atkinson;
    src: url(/Atkinson/regular.ttf);
}

@font-face {
    font-family: AtkinsonBold;
    src: url(/Atkinson/bold.ttf);
}


body {
    background-color: #f2f2f2;
    font-family: Atkinson, sans-serif;
    margin: 0;
}

header {
    position: relative;
    background-color: #2f2f2f;
    color: #f2f2f2;
    padding: 40px;
    padding-top: 20vh;
    margin: 0;
}

header:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgb(234,214,60);
    background: -moz-linear-gradient(left,  rgba(234,214,60,1) 0%, rgba(221,116,11,1) 21%, rgba(223,60,232,1) 47%, rgba(62,148,239,1) 69%, rgba(60,234,110,1) 99%);
    background: -webkit-linear-gradient(left,  rgba(234,214,60,1) 0%,rgba(221,116,11,1) 21%,rgba(223,60,232,1) 47%,rgba(62,148,239,1) 69%,rgba(60,234,110,1) 99%);
    background: linear-gradient(to right,  rgba(234,214,60,1) 0%,rgba(221,116,11,1) 21%,rgba(223,60,232,1) 47%,rgba(62,148,239,1) 69%,rgba(60,234,110,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ead63c', endColorstr='#3cea6e',GradientType=1 );
}

header > h1 {
    position: relative;
    font-family: AtkinsonBold, sans-serif;
    margin: 0;
    font-size: 3em;
    z-index: 10;
}

header > nav {
    position: relative;
    margin-bottom: 20px;
    z-index: 10;
}
header > nav a {
    background-color: #f2f2f2;
    color: #2f2f2f;
    text-decoration: none;
}

#bannerImg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    user-select: none;
}
#bannerImg > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
background: -moz-linear-gradient(top,  rgba(47,47,47,0.6) 0%, rgba(47,47,47,0.8) 34%, rgba(47,47,47,1) 99%, rgba(47,47,47,1) 100%);
background: -webkit-linear-gradient(top,  rgba(47,47,47,0.6) 0%,rgba(47,47,47,0.8) 34%,rgba(47,47,47,1) 99%,rgba(47,47,47,1) 100%);
background: linear-gradient(to bottom,  rgba(47,47,47,0.6) 0%,rgba(47,47,47,0.8) 34%,rgba(47,47,47,1) 99%,rgba(47,47,47,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#992f2f2f', endColorstr='#2f2f2f',GradientType=0 );


}

main {
    padding: 40px;
}

footer {
    padding: 40px;
    color: #f2f2f2;
    background-color: #2f2f2f;
}

p {
    padding-top: 20px;
    margin: 0;
}

main h2,
main h3,
main h4,
main h5 {
    padding-top: 20px;
    margin: 0;
}


button {
    padding: 8px;
    border: 2px solid black;
    background: none;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
}

a {
    color: inherit;
    padding: 5px;
    margin: 0 -5px;
}

button:hover,
a:hover {
    background-color: #e0e0e0;
}

button:active,
button:focus,
a:active,
a:focus {
    background-color: #b1b1b1;
}

.accordion > button {
    margin-top: 20px;
}


[href="#main"] {
    display: none;
}

/* A11Y */
#a11y {
    display: none;
    padding: 20px;
    z-index: 99;
}

#a11y ul,
#a11y ol {
    list-style: none;
    padding: 0;
}

#a11y li {
    display: inline-block;
    margin: 10px;
    ;
}

#showA11y {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    border-color: white;
    z-index: 99;
}

#showA11y:hover {
    color: black;
}

video {
    max-width: 100%;
    width: 500px;
    border-radius: 5px;
}