@import "buttons.css";

#game-board {
    display: block;
    clear: both;
    text-align: center;
    font-size: larger;
    animation: fadeIn 0.5s;
}

#game-board.hidden {
    display: none;
    animation: fadeOut 0.5s;
}

#game-board-header {
    display: block;
    clear: both;
    text-align: center;
    font-size: larger;
}

#game-board-header.hidden {
    display: none;
    animation: fadeOut 0.5s;
}

#question {
    display: block;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: whitesmoke;
    font-weight: normal;
    font-size: large;
    animation: fadeIn 0.5s;
}

#question.hidden {
    display: none;
    animation: fadeOut 0.5s;
}

#generated-word {
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: whitesmoke;
    font-weight: bold;
    font-size: xx-large;
    max-width: 100%;
    padding: 15px 0;
    text-shadow: lightblue 1px 1px 5px;
}

#generated-word.hidden {
    display: none;
    animation: fadeOut 0.5s;
}

#generated-word.waiting {
    margin-bottom: 10px;
}

#ask-for-hint {
    display: block;
    text-align: center;
    margin-bottom: 25px;
}

#ask-for-hint.hidden {
    display: none;
    animation: fadeOut 0.5s;
}

#hint {
    display: block;
    text-align: center;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
    color: whitesmoke;
    font-weight: lighter;
    font-size: math;
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;
    animation: fadeIn 0.5s;
    border: 2px dashed lightblue;
    padding: 10px;
    border-radius: 10px;
    background-color: black;
    box-shadow: 5px 5px 5px lightskyblue;
}

#hint.hidden {
    display: none;
    animation: fadeOut 0.5s;
}
