/* ---------- BODY ---------- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: url("https://i.pinimg.com/564x/b2/18/c3/b218c3364e342b00867d39489c851413.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff; /* light text for contrast */
    margin: 0;
    padding: 60px 20px;
    text-align: center;
}

/* Optional overlay for better text readability */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* adjust darkness */
    z-index: 0;
}

/* Ensure content is above overlay */
body * {
    position: relative;
    z-index: 1;
}

/* ---------- HEADINGS ---------- */
h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ---------- PARAGRAPHS ---------- */
p {
    font-size: 1.1rem;
    color: #fff; /* light text for contrast over image */
}

/* ---------- BUTTONS ---------- */
button, input[type="submit"] {
    background: #222;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
}

button:hover, input[type="submit"]:hover {
    opacity: 0.85;
}
