/* styles.css */

/* Reset styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
}

.container {
    max-width: 800px;
    margin: 50px auto; /* Center the container */
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Subtle shadow */
}

h1 {
    text-align: center; /* Center the heading */
    color: #007bff; /* Blue heading color */
}

p {
    line-height: 1.6; /* Increase line spacing for better readability */
    text-align: center; /* Center the paragraphs */
}

/* Styling for links */
a {
    color: #007bff; /* Blue link color */
    text-decoration: none; /* Remove underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Return button */
.return-button {
    text-align: center; /* Center the button */
    margin-top: 20px; /* Add some space above the button */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
