html {
    font-family: monospace, monospace;
    background-color: #282a36;
    color: #f8f8f2;
    height: 100%;
}

body {
    text-align: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

a, a:visited {
    /* text-decoration: none; */
    color: #8be9fd;
    font-weight: bold;
}

.unselectable {
    /* https://stackoverflow.com/a/4448972/439299 */
    -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
   -ms-user-select: none;
   user-select: none;
}

#main-content {
    text-align: center;
    display: inline-block;
    height: 100%;
    width: 100%;
    max-width: 350px;
}

#squordle-output,
#squordle-guess,
#pokedex-div {
    display: inline-block;
    float: left;
    font-family: monospace, monospace;
    font-weight: bold;
    background-color: #44475a;
    color: #f8f8f2;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 3px;
}

#squordle-output,
#pokedex-div {
    border: 1px solid #f8f8f2;
    padding: 2px;
    height: 250px;
    overflow: auto;
    text-align: left;
    font-size: 1.25em;
}

#squordle-guess {
    display: inline-block;
    height: 35px;
    font-size: 1.25em;
    padding: 2px;
}

.answer-color-1 {
    color: #50fa7b;
}

.answer-color-2 {
    color: #f1fa8c;
}

#pokedex-div {
    display: none;
}

.pokedex-entry {
    margin: 5px 0;
    padding: 0;
    width: 100%;
    height: 1.25em;
}

/* Modal style */

#winner-modal-wrapper {
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

#winner-modal-div {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 100%;
    max-width: 350px;
    height: 250px;
    background-color: #44475a;
    margin: 0 3px;
    border: 1px solid black;
    border-radius: 5px;
}

#winner-modal-img {
    height: 50%;
}


