@charset "UTF-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px; /* 入力欄の文字サイズを変更 */
}

input {
    width: 80px; /* 入力欄の幅を変更 */
    height: 50px; /* 入力欄の高さを変更 */
    font-size: 24px; /* 入力欄の文字サイズを変更 */
    text-align: center;
    border: 2px solid #ccc; /* 入力欄の枠線を変更 */
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 15px 30px; /* ボタンのパディングを変更 */
    cursor: pointer;
    font-size: 20px; /* ボタンの文字サイズを変更 */
}

button:hover {
    background-color: #0056B3;
}

.hidden {
    display: none;
}
/*#timerEndPopup {
    width: 300px;
    height: auto;
    margin-top: 20px;
}
*/