/* Reset some default browser styles */
/* スマホ対応のレスポンシブデザイン */
@media screen and (max-width: 768px) {
    /* コンテナを全幅にし、パディングを追加 */
    .container {
        width: 100%;
        padding: 0 10px;
    }

    /* ヘッダーテキストを中央揃えにする */
    header {
        text-align: center;
    }

    /* ヘッダーのulのパディングを削除 */
    header ul {
        padding: 0;
    }

    /* ヘッダーのリストアイテムをブロック表示にし、パディングを追加 */
    header li {
        display: block;
        padding: 10px 0;
    }

    /* メインコンテンツのパディングを減らす */
    main {
        padding: 10px;
    }

    /* ボタンを全幅にし、フォントサイズを小さくする */
    button {
        width: 90% !important;
        font-size: 20px;
        margin: 0;
        border-radius: 0;
    }

    /* フッターのパディングを増やす */
    footer {
        padding: 20px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* デフォルトのフォントと背景色を設定 */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* コンテンツを中央に配置するためのコンテナ */
.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

/* ヘッダーのスタイル */
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    padding-left: 3%;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

/* メインコンテンツのスタイル */
main {
    padding: 20px;
    padding-left: 3%;
    background: #fff;
}
main p {
    font-size: 20px;
}

.button :not {
    text-align: center !important;
}

.button-mobile{
    text-align: center;
}

button {
    font-size: 25px; 
    margin: 5px; 
    border-radius: 10px; 
    width: 7%; 
    text-align: center;
}

/* フッターのスタイル */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}