/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Background Styling */
body {
     background: url('./images/8-80730_beautiful-beautiful-nature-wallpapers-download.jpg') no-repeat center center / cover; 
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Container Styling */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent overlay */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Headings */
h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #f1c40f;
}

h2 {
    font-size: 28px;
    margin: 20px 0;
    color: #f39c12;
}

/* Paragraphs & Highlighted Text */
p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight {
    color: #f1c40f;
    font-weight: bold;
}

/* List Styling */
ul {
    list-style: none;
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

ul li b {
    color: #f39c12;
}

/* Contact Section */
.contact {
    margin-top: 20px;
    font-size: 18px;
}

.contact a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.contact a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    p, ul li, .contact {
        font-size: 16px;
    }
}
