/* 全体の背景とフォントの設定 */
body {
    background-color: #ffffff;
    color: #e2e8f0;            /* 読みやすい薄いグレー文字 */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* 中央のカード風デザイン */
.card {
    background-color: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

h1 {
    margin: 0;
    font-size: 2rem;
    color: #38bdf8; /* シアンカラーのアクセント */
}

.subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

hr {
    border: none;
    border-top: 1px solid #334155;
    margin: 1.5rem 0;
}

/* ボタンのデザイン */
.links {
    margin-top: 1.5rem;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2rem;
}

.button:hover {
    background-color: #0284c7; /* ホバー時に少し暗く */
}