/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px; /* 上部のパディングを追加 */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* ビューポートの高さに合わせる */
}

.container {
    max-width: 500px;
    width: 100%;
    background-color: #fff;
    margin: 0 auto; /* 中央揃え */
    padding: 20px; /* 内側の余白 */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1, h2 {
    color: #333;
    font-size: 2em; /* 見出しのサイズ */
    margin-bottom: 20px; /* ヘッダーの下部にスペースを追加 */
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

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

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;/* フォームの上部にスペースを追加 */
}

input[type="text"] {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
}
@media (max-width: 768px) {
    .message, .flash-success, .flash-error, .flash-ended {
        font-size: 0.9em; /* Smaller font size on smaller screens */
    }
    .welcome-message {
        font-size: 0.9em; /* Smaller font size on smaller screens */
    }
}
