@charset "utf-8";
/***!  style declaration  !***/

body {
                font-family: Arial, sans-serif;
                background: #f4f4f4;
                padding: 0;
                margin: 0;
                display: flex;
                height: 100vh;
                align-items: center;
                justify-content: center;
            }
            .box {
                background: #fff;
                padding: 40px 50px;
                border-radius: 12px;
                box-shadow: 0 0 15px rgba(0,0,0,0.1);
                text-align: center;
                max-width: 480px;
            }
            h1 {
                font-size: 26px;
                margin-bottom: 15px;
                color: #222;
            }
            p {
                font-size: 15px;
                color: #555;
                line-height: 1.6;
            }
            .note {
                margin-top: 20px;
                font-size: 13px;
                color: #888;
            }
