/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
body {
    background-color: black;
    color: red;
    font-family: 'Arial', Courier, monospace, bold;
    text-align: center;
    margin: 0;
    padding: 20px;
}

header, footer {
    margin-bottom: 20px;
    color: red;
}

hr {
    border: 1px solid red;
    width: 80%;
    margin: 20px auto; /* Increased margin for more space above and below */
}

section {
    margin: 40px auto; /* Increased margin for more space */
    max-width: 60%; /* Adjust this value to set the desired width of the text */
    text-align: left;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

h1 {
    color: white;
}