/* For personal use only.  Not licensed. */

/* Style parameters for the Cryptarithm web page. */

body {
    /*display: flex;*/
    /*justify-content: center;*/
    background-color: #FFFFF8;
    font-size: 20px;
    height: 100vh;  /* Ensure the body fills the viewport */
    padding: 0;
    margin: 0 20px 0 20px;
}

.content {
    display: flex;
    flex-direction: column;
    /*align-self: center;*/
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 32px;
    align-self: center;
}

textarea {
    font-size: 18px;
    font-family: Courier New, monospace;
    font-weight: bold;
}

textarea::placeholder {
    color: lightgrey;
}

.buttonholder {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    margin: 20px;
}

button {
    font-size: 18px;
}

.results {
    flex: 1;
    margin-bottom: 60px;  /* Chrome on mobile devices need extra margin */
}

