body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f58220; /* Cloudflare orange color */
}

h1 {
    color: white;
    margin-bottom: 20px;
}

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

button {
    width: 100px;
    height: 50px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}
