/* Designed intentionally with wacky colours, use style/custom.css to change */
    
    *, ::before, ::after { box-sizing: border-box; }
    
    body
    {
        background: palegoldenrod;
        font-size: 100%;
        line-height: 1.5rem;
    }
    
    header, nav, section, footer
    {
        background: #ddd;
        margin: 1.5rem auto 0 auto;
        max-width: 1200px;
        text-align: center;
        width: 90%;
    }
    
    header img { display: block; width: 100%; }

/* Navigation */

    nav { background: #ddd; padding: 0; }
    nav ul { display: flex; justify-content: center; list-style: none; margin: 0; padding: 0; }
    nav ul li { font-weight: bold; text-transform: uppercase; }
    nav ul li a { color: #333; display: inline-block; padding: 1em; text-decoration: none; }
    nav ul li a.on { background: #333; color: white; }
    nav ul li a:hover { background: #333; color: white; }
    
/* Countdown */
    
    #clock { color: #fff; display: inline-flex; gap: 1rem; }
    #clock div { border-radius: 5px; background: #777; padding: 1rem; }
    #clock span
    {
        border-radius: 5px;
        background: #333;
        display: inline-block;
        font-size: x-large;
        padding: 1rem;
    }
    #clock p { font-size: small; margin: 1rem 0 0 0; padding: 0; }
    
/* Form */

    form { }
    form fieldset { border: 1px solid #ccc; }
    form fieldset dl { }
    form fieldset dl dt { }
    form fieldset dl dd { margin: 0; padding: 0.5rem; }
    form fieldset dl dd input { padding: 0.5rem; width: 240px; }
    
/* Stream */
    
    section.stream { display: flex; }
    section.stream main { display: block; flex-grow: 1; height: 0; padding-bottom: 56.25%; /* 16:9 */ position: relative; width: 65%; }
    section.stream main iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    section.stream aside { margin-left: 20px; flex: 0 0 360px; }
    @media screen and (max-width: 800px)
    {
        section.stream { display: block; width: 90%; }
        section.stream main { display: block; width: 100%; }
        section.stream aside { display: block; margin-left: 0; margin-top: 1em; width: 100%; }
    }
    
/* Faqs */
    
    #faqs { background: white; text-align: center; }
    #faqs > div { display: flex; justify-content: space-between; margin: 1em 0 0 0; text-align: left; }
    #faqs > div > div { flex: 0 1 49%; margin: 0; text-align: left; }
    #faqs > div > div dl { margin-top: 1em; }
    #faqs > div > div dl dt { border: 2px solid #777; font-weight: bold; }
    #faqs > div > div dl dt a { color: #777; box-sizing: border-box; display: inline-block; padding: 1em; text-decoration: none; width: 100%; }
    #faqs > div > div dl dt a:hover { background: #777; color: white; }
    #faqs > div > div dl dd { display: none; line-height: 157%; margin: 0; padding: 1em; }
    #faqs > div > div dl dt.clicked { border: 2px solid #333; }
    #faqs > div > div dl dt.clicked a { background: #333; color: white; }
    
    @media screen and (max-width: 980px)
    {
        #faqs > div { flex-wrap: wrap; }
        #faqs > div > div { flex: 1 0 100%; }
    }
    
/* Table */
    
    table { border-collapse: collapse; text-align: left; width: 100%; }
    table tr { border-top: 1px solid #ccc; border-right: 1px solid #ccc; }
    td, th { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; padding: 0.5rem; }
    th { background: #AF53A1; color: white; }
    td a { color: #AF53A1; font-weight: bold; text-decoration: none; }
    
/* Footer */

    footer { padding: 1.5rem; text-align: left; }
    footer p { margin: 0; padding: 0; }
    footer ul { list-style: none; margin: 0; padding: 0; }
    footer ul li { margin: 0; padding: 0; }
    footer ul li a
    {
        border: 2px solid #333;
        color: #333;
        display: inline-block;
        padding: 0.5em;
        text-decoration: none;
    }
    footer ul li a:hover { background: #333; color: white; }
    footer img { width: 100%; }
    
/* Classes */

    ul.errors 
    {  
        color: #cc0000; 
        list-style: none; 
        margin: 1rem 0; 
        padding: 0; 
    }

    a.butt
    {
        background: #333;
        color: white;
        display: inline-block;
        padding: 0.5em;
        text-decoration: none;
    }