html {
    height: 100%;    
    background-color: #404825;
    background-image: url('../img/bg.jpg');
}

body {
    min-height: 100%;

    margin: 0;
    padding: 0;
        
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    font-family: "Lucida Sans Typewriter", "Lucida Console", "Monaco", monospace;     

    background-image: url('../img/footer-declass.png');
    background-position: bottom center;
    background-size: 102%;
    background-repeat: no-repeat;
}

.container {
    width: 100%;
    padding: 10px 15px;
    background-color:rgb(40, 54, 24);
    background-image: url('../img/bg-con.jpg');
    color: #fefae0;
    box-shadow: 0 0 1px 1px rgb(40, 54, 24);
}

h1 {
    color: #dda15e;
    margin: 0;
    text-shadow: -1px -1px #fefae0;
}

a {
    color: #dda15e;
}

a:hover, a:active, a:focus, a:focus-within {
    color: #bc6c25;
}

textarea {
    width: 100%;
    font-size: 18px;
}

#string {
    min-height: 96px;
}

#translated {
    min-height: 192px;
}

.alphabet_container {
    margin: 16px 0 0 0;
}

.select_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#alphabet {
    flex: 1;
    font-size: 16px;
    height: 36px;
    font-family: "Lucida Sans Typewriter", "Lucida Console", "Monaco", monospace; 
}

.translate_container {
    width: 100%;
    margin: 0 0 16px 0;
}

#translate {
    width: 100%;
    height: 36px;
    font-size: 16px;
    font-weight:bolder;

    background-color: #dda15e;

    border-top-color: #c27939;
    border-left-color: #c27939;
    border-right-color: #bc6c25;
    border-bottom-color: #bc6c25;

    font-family: "Lucida Sans Typewriter", "Lucida Console", "Monaco", monospace;
    text-transform: uppercase;
}

#translate:hover {
    background-color: #c27939;
}

.speak {
    display: none; /* FYI: display flex if speech available in browser via JS */
    margin: 10px 0 0 0;
    font-size: 12px;

    justify-content: flex-end;
}

#say {
    width: 160px;
    height: 36px;
    font-size: 14px;
    line-height: 14px;
    font-weight: bolder;

    background-color: #dda15e;

    border-top-color: #c27939;
    border-left-color: #c27939;
    border-right-color: #bc6c25;
    border-bottom-color: #bc6c25;

    font-family: "Lucida Sans Typewriter", "Lucida Console", "Monaco", monospace;
    text-transform: uppercase;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

#say img {
    height: 16px;
    padding-top: 1px;
}

.clientside {
    border-top: 1px solid #fefae0;
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
    font-size: 12px;
}

@media (min-width:768px) {
    body {
        justify-content: center;
        align-items: center;
    }

    .container {
        max-width: 768px;
        border-radius: 32px;
    }

    .content {
        margin: 32px 36px;
    }
}

@media (min-width: 880px) {
    body { 
        background-image: url('../img/sidebar-declass.png');
        background-position: 4px center;
        background-size: 32px;
        background-repeat: no-repeat;
    } 
}