/* General page styling */
body {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
}

/* Container to center the content layout */
#main-container {
    padding: 40px;
    max-width: 600px;
}

/* The main title heading style */
#main-title {
    background-color: #d1b846;
    color: #0d233a;
    font-size: 3rem;
    font-weight: bold;
    padding: 20px;
    margin: 0 0 40px 0;
    width: fit-content;
}

/* The banner box holding your six words */
#banner {
    background-color: rgba(24fd, 218, 68, 0.85); /* Transparent yellow gold */
    color: #1a2a3a;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 30px;
    margin-top: 20px;
    width: 80%;
    line-height: 1.2;
}

/* Formats the spacing of the paragraphs inside the banner */
#banner p {
    margin: 5px 0;
}

