/* General Page Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #e3f2fd, #bbdefb);
    color: #333;
    text-align: center;
}

/* Header */
h1 {
    color: #1565c0;
    margin-top: 50px;
    font-size: 2.5rem;
}

/* Paragraph */
p {
    font-size: 1.2rem;
    margin: 20px auto;
    width: 70%;
    line-height: 1.6;
}

/* Button Style */
button {
    background-color: #1565c0;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s ease;
}

button:hover {
    background-color: #0d47a1;
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 15px;
    background: #1565c0;
    color: white;
    font-size: 0.9rem;
}
