:root {
    --accentColour: red;
}



body {
    background-color: whitesmoke;
    font-family: Tahoma, Arial, serif;
}


.display-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 75px;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    white-space: pre-wrap;
    flex-grow: 7;
}


.header-text {
    margin-top: 10px;
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    color: red;
    animation: colour-change 1s step-start infinite;
}


@keyframes colour-change {
    0% {
        color: var(--accentColour);
        opacity: 0.8
    }

    50% {
        color: black;
        opacity: 1
    }

    100% {
        color: var(--accentColour);
        opacity: 0.8
    }
}

.body-text {
    margin-bottom: 50px;
    font-size: 40px;
    font-weight: normal;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    color: #2B3033;
}

.footer-fixed {
    background-color: #3F5261;
    color: whitesmoke;
    position: fixed;
    bottom: 50px;
    left: 0px;
    right: 0px;
    height: 68px;
    padding-top: 4px;
    padding-bottom: 6px;
    margin-bottom: 10px;
    z-index: 50;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: start;
    font-size: 24px;
    justify-content: space-between;
}

.footer-left {
    margin-left: 12px;
    margin-top: 4px;
    height: 32px;
    text-align: start;
    flex: 0.4;
    min-width: 200px;
}

#footer-msg-readout {
    display: block;
    color: gainsboro;
    font-size: 22px;
    margin-left: 12px;
    height: 32px;
    text-align: start;
    flex: 0.4;
    min-width: 200px;
}

.footer-right {
    margin-right: 12px;
    height: 32px;
    text-align: end;
    flex: 0.3;
    min-width: 100px;
}

.footer-logo {
    background-color: #2B3033;
    margin-top: 0px;
    text-align: center;
}

.logo-image {
    width: 200px;
    padding-top: 9px;
    padding-bottom: 18px;
}

.screensaver-container {
    display: block;
    visibility: visible;
    width: 100%;
    height: 100%;
    background-color: black;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.screensaver {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: block;
    padding: 0;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    z-index: 100;
}

#progress-bar-container {
    display: block;
    position: fixed;
    bottom: 137px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: grey;
}

#progress-bar {
    width: 0%;
    height: 12px;
    background-color: red;

}
.gay-rainbow-bg {
    animation: gayRainbowBg 8s ease infinite;
}

.gay-rainbow-txt {
    animation: gayRainbowTxt 8s ease infinite;
}

@keyframes gayRainbowBg {
    0% {
        background-color: red;
    }

    17% {
        background-color: orange;
    }

    33% {
        background-color: gold;
    }

    50% {
        background-color: green;
    }

    67% {
        background-color: deepskyblue;
    }

    83% {
        background-color: orchid;
    }
    100% {
        background-color: red;
    }
}

@keyframes gayRainbowTxt {
    0% {
        color: red;
    }

    17% {
        color: orange;
    }

    33% {
        color: gold;
    }

    50% {
        color: green;
    }

    67% {
        color: deepskyblue;
    }

    83% {
        color: orchid;
    }
    100% {
        color: red;
    }
}

.interact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: palegoldenrod;
    z-index: 255;
    cursor: pointer;
}