/* Style for the image */
img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0;
}

/* Align the image to the left */
section div {
    text-align: left;
}

/* Body background and font settings */
body {
    background-color: #0b0204; /* Dark background */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Clean font */
}

/* Header and footer styling */
header {
    background-color: #000000; /* Black background for the header */
    color: #ffffff; /* White text for contrast */
    padding: 15px 20px; /* Some extra padding */
    text-align: center; /* Center-align text */
    border-bottom: 2px solid #ec1c29; /* Add a red border at the bottom */
    font-size: 1.5em; /* Increase text size */
    font-weight: bold; /* Make the text bold */
    letter-spacing: 2px; /* Add some spacing between letters */
}

footer {
    background-color: #ec1c29; /* Keep footer red */
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/* Style for the main content */
main {
    padding: 20px;
}

/* Additional text styles if needed */
h3 {
    font-size: 1.2em; /* Custom font size for h3 */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Add slight letter spacing */
}

/* Additional text styles if needed */
h2 {
    font-size: 1em; /* Custom font size for h3 */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 0.5px; /* Add slight letter spacing */
}