html {
    background-color: rgb(18, 80, 147);
}

body {
    margin: 0;
    background: rgb(18,80,147) /**url(marble.png);**/
    /**background: linear-gradient(to bottom, rgb(7, 34, 63) 0%, rgba(0,0,0,0) 100% );**/
}

#container {
    position: relative;
    top: 20%;
    left: 0px;
}

#frame {
    visibility: hidden;
    display: flex;

    --width: 90%;
    --height: 200px;

    position: absolute;
    top: 100px;
    left: calc(50% - var(--width)/2);
    width: var(--width);
    height: var(--height);
    text-align: center;
    border: black solid 5px;

    font-size: 100px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

    align-items: center;
    justify-content: center;
}
#frame.enabled {
    text-shadow: #474747 3px 3px 2px;
    background: rgb(255,240,131);
    background: radial-gradient(circle, rgba(255,240,131,1) 0%, rgba(255,248,213,1) 48%, rgba(218,185,43,1) 100%);
}
#frame.disabled {
    text-shadow: #474747 3px 5px 2px;
    background: rgb(75,70,28);
    background: radial-gradient(circle, rgba(75,70,28,1) 0%, rgba(148,138,87,1) 48%, rgba(218,185,43,1) 100%);
}

.footer {
    position: fixed;
    left: 0px;
    bottom: 100px;
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}