html {
    text-align: center;
}

h1 {
    font-family: monospace;
    font-size: 36px;
    padding: 15px;
    margin: 15px;
    margin-top: 80px;
}

button {
    font-family: monospace;
    font-size: 18px;
    padding: 15px;
    margin: 15px;
    background-color: #eeeeee;
    color: black;
    border: 0px solid #000000;
    box-shadow: 2px 2px #dddddd;
}

button:hover {
    background-color: #dddddd;
    text-decoration: none;
}

button:active {
    position: relative;
    top: 2px;
    left: 2px;
    box-shadow: 0px 0px;
}

a {
    font-size: 18px;
    font-family: monospace;
    text-decoration: underline;
    color: black;
    margin: 10px;
}

#poem {
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    font-family: monospace;
    padding: 15px;
    margin: 15px;
    background-color: #eeeeee;
    font-size: 18px;
    text-align: left !important;
    box-shadow: 2px 2px #dddddd;
}

#message {
    color: white;
}

select {
    font-family: monospace;
    display: block;
    margin: 0 auto;
    padding: 10px 70px 10px 13px !important;
    max-width: 100%;
    height: auto !important;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    background: url("../img/selectbox-arrow.png") right center no-repeat;
    background-color: #eeeeee;
    color: #000000;
    font-size: 18px;
    line-height: 18px !important;
    appearance: none;
    /* this is must */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* body select.select_box option */
select option {
    padding: 0 4px;
}

/* for IE and Edge */
select::-ms-expand {
    display: none;
}

select:disabled::-ms-expand {
    background: #f60;
}

.loading:after {
    content: '.   ';
    animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    40% {
        color: black;
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    60% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    80%,
    100% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 black;
    }
}
