body {
    font-family: sans-serif;
}

.hangman-decorator {
    position: fixed;
    transform: rotate(-40deg);
    font-size: 200px;
    top: 180px;
    color: #ff6000;
    z-index: -1;
}

.hangman-button {
    padding: 10px;
    border-radius: 10px;
    color: white;
    background-color: #ff6000;
    margin: 25px;
    border: 1px solid white;
    float: right;
}

.hangman-button:active {
    border-style: none;
    border: 1px solid #ff6000;
}

.hangman-button:focus {
    outline: 0;
}

.hangman-center {
    text-align: center;
    padding-top: 15%;
}

.hangman-center * {
    margin: 10px;
    font-size: 100px;
}

.hangman-center input {
    border: 0;
    width: 100px;
    caret-color: #ff6000;
    color: #ff6000;
    font-weight: bolder;
    background: transparent;
}

.hangman-center input:focus {
    outline: none;
}

.hangman-notice {
    font-size: 25px;
}

#hangman-counter {
    font-size: 20px;
    font-style: italic;
}

#hangman-word-container {
    font-family: monospace;
    font-size: 150px;
}

.hangman-danger {
    background-color: #ffdddd;
    border-left: 6px solid #f44336;
}

.hangman-success {
    background-color: #ddffdd;
    border-left: 6px solid #4CAF50;
}

#hangman-alert {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffffd6;
}

.hangman-message {
    text-align: center;
    padding: 10px;
    margin: 20%;
    border-radius: 10px;
}

.hangman-message strong {
    padding: 10px;
}