body{
    text-align: center; 
    font-family:Arial, Helvetica, sans-serif; 
    background: lightslategray;
}

h1{
    font-size: 2.5rem;
    margin-bottom: 10px;
}

button {
    font-size: 2rem;
    margin-bottom: 15px;
}

span{
    font-size: 2rem;
    font-weight: bold;
}

#game-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 75vw; 
    margin: 10px auto;
    
}

#category-row {
    display: flex; 
    align-items: center;
    margin-bottom: 20px;
   
}

#clue-board{
    flex-direction: column;
    
}

.clue-row {
    display:flex; 
    
}
.clue-box {
    display:flex; 
    align-items: center; /*vertical*/
    justify-content: center; /*horizontal*/
    border: 2px solid white;
    background-color: blue;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    height: 100px; 
    flex: 1; /* will take up one space on the board */
    text-transform: uppercase;
}

.category-box{
    font-size: .8rem;
    line-height: 25px;
}

.clicked-box{
    font-size: 1rem;
}