        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: url('background.webp') no-repeat center center fixed;
            background-size: cover;
            font-family: Arial, sans-serif;
        }

        .container {
            background-color: white;
            max-width: 700px;
            width: 100%;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .logo {
            max-width: 100%;
            height: auto;
        }

        .buttons {
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
        }

        .button {
            text-decoration: none;
            background-color: #00528f;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            font-size: 18px;
        }

        .button:hover {
            background-color: #eb5b55;
        }

        @media (max-width: 700px) {
            .buttons {
                flex-direction: column;
            }

            .button {
                margin: 5px 0;
            }
        }
