* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('images/desert-bg.jpg'); /* Insert your background image URL here */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    text-align: center;
    position: relative; /* Position relative for overlay */
    animation: fadeIn 1s ease-in;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1; /* Ensure overlay is below the content */
}

.container {
    background-color: rgba(255, 255, 255, 0.2); /* Less opaque background for text */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s ease-in-out;
    max-width: 600px; /* Limit the width for better aesthetics */
    width: 90%; /* Responsive width */
    z-index: 2; /* Ensure content is above the overlay */
}

h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold; /* Make the heading bold */
}

p {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 300; /* Lighter font weight for a professional look */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.2em;
    }
}
