* {
    color: red;
}

body {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.header {
    background-color: lightblue;
    width: 100%;
    padding : 16px;
}
.header h1 {
    color: #fff;
}

.word-display {
    margin-top : 16px;
    font-size: 80px;
    color:lightblue;
}

.word-input-box {
    margin-top : 32px;
}

.word-input{
    padding: 8px;
    width: 300px;
}

.game-info {
    margin-top : 32px;
    font-size : 0.8rem;
    display: flex;
    justify-content: space-between;
    width: 200px;
}

.time, .score {
    font-size : 30px;
}

.button, .buttonOver {
    width: 200px;
    height: 35px;
    background: lightblue;
    color:#fff;
    border: none;
    cursor: pointer;
    margin: 0.5rem;
}

.loading {
    background: #ccc;
    cursor: not-allowed; /* 커서올리면 금지표시 */
}

.over {
    background: #666;
    cursor: not-allowed;
}

