/* Reset & base */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Container */
.container {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Heading */
.container h1 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Paragraph */
.container p {
    margin-bottom: 2rem;
    color: #555;
}

/* Button */
button {
    background-color: #f47b00;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d86600;
}
