/* General Styles */
body {
    background-image: url('Backround.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 20px;
}

h1, h2, h3 {
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.8em;
    margin: 15px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

h3 {
    font-size: 1.5em;
    margin: 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

a {
    color: #00f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* List Styles */
ul {
    list-style-type: square;
    margin: 20px auto;
    padding: 0;
    max-width: 600px; /* Centering the list */
}

li {
    margin: 10px 0;
}

/* Image Styles */
img {
    display: block;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

/* Horizontal Line */
hr {
    border: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}
