body {
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    text-align: left; /* Center align all text */
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #1a1a1a; /* Dark gray background for container */
    border: 2px solid #fff; /* White border */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* Soft white glow */
}

h1 {
    text-transform: uppercase;
    color: #ff6347; /* Tomato color for title */
    margin-bottom: 20px;
    font-size: 2.5em; /* Larger font size */
    text-align: center !important;
}

h2 {
    text-transform: uppercase;
    color: #ffa07a; /* Light salmon for subtitles */
    margin-top: 20px;
    font-size: 1.8em;
}

p {
    line-height: 1.8;
    font-size: 1.1em;
    margin: 10px 0;
    color: #ccc; /* Light gray for paragraph text */
}

a {
    color: #ff6347; /* Tomato color for links */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
