#answersCorrect {
    border: green 2px solid;
    height: 100px;
    width: 100px;
    position: fixed;
    right: 5px;
    top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightblue;
    justify-content: center;
    border-radius: 50%;
}

#answersCorrect > h3 {
    text-align: center;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: darkblue;
    position: relative;
}

.greenCheck {
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 500px;
    opacity: 0;
    animation: fadeIn 3s ease-in;
}

.redX{
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 500px;
    opacity: 0;
    animation: fadeIn 3s ease-in;
}

.userFeedback{
    position: fixed;
    justify-content: center;
    height: 500px;
    width: 500px;
    z-index: -1;
}

@keyframes fadeIn {
    100% {opacity: 1;}
}

form {
    z-index: 1;
}

.board {
    z-index: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-wrap: wrap;
}

.category, .clueValue {
    border: solid black 2px;
    border-top: solid black 4px;
    border-bottom: solid black 4px;
    width: 245px;
    height: 142px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category {
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Shrikhand', cursive;
    font-size: 20px;
}

.clueValue {
    color: orange;
    font-size: 70px;
    font-weight: bold;
    text-shadow: black 5px 5px;
}

.cluePresentation{
    position: absolute;
    height: 60vh;
    width: 60vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: .1rem;
    font-size: 59px;
    text-align: center;
    text-shadow: black 5px 5px;
    background-color: blue;
    padding: 10px;
    flex-direction: column;
}

label {
    color: white;
}

