/* Global Styling */
body {
    font-family: Arial, sans-serif;
    background-image: url('background.jpeg'); /* Ensure the image is correctly placed */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 50px;
    margin: 0;
}

/* Heading Styles */
h1 {
    font-size: 48px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Paragraph Styles */
p {
    font-size: 24px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Center Content */
.container {
    margin-top: 50px;
}