
    <style> body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80vh;
            margin: 0;
        }
        .button-container {
            text-align: center;
        }
        .button {
            background-color: #d83800; /* button arka plan */
            color: orange;
            padding: 15px 32px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 18px;
            margin: 10px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .button:hover {
            background-color: #00008f; /* Hover (fareyle üzerine gelince) rengi */
        } 
</style>
