/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #f0f9ff, #e8f8ff); /* Light pastel blue */
    color: #333;
    transition: 0.3s;
}

/* Container */
.container {
    background: rgba(255, 255, 255, 0.7); /* Glassmorphism Effect */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(8px);
}

/* Headings */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #005a9e; /* Soft Blue */
}

/* Paragraph */
p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Button */
button {
    background: #ff9800; /* Orange */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    margin-top: 15px;
}

button:hover {
    background: #e68900;
}
