@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=Noto+Sans+JP:wght@100..900&display=swap');

/* choice.css */

body {
    background-color: #e0e0e0;
    color: #0b0b0f;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fffbfb;
    border: 1px solid #333;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
    margin-top: 25px;
}

#message br {
    content: "";
    display: block;
    margin-bottom: 1em;
}

.button-link {
    background-color: transparent;
    color: #0b0b0f;
    border: 1px solid #0b0b0f;
    padding: 10px 20px;
    margin-right: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.button-link:hover {
    background-color: #e0e0e0;
    color: #ffffff;
    text-shadow: none;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    padding: 20px;
    color: #888;
    background-color: #e0e0e0;
    border-top: 1px solid #222;
    margin-top: 25px;
}

