#Banner {
    padding: 100px 20px; /* Adds space around text so the background shows */
    text-align: center;
    /* This sets the background image behind the text */
    background-image: url("holiday_banner.jpeg"); 
    background-size: cover;      /* Makes image cover the whole area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    color: white;                /* White text looks better on festive colors */
    text-shadow: 3px 3px 6px #000000; /* Adds a black glow to make text pop */
    border-bottom: 5px solid #006400; /* Dark green border at the bottom */
}

#Banner h1 { 
    font-size: 60px; 
    margin: 0; 
}

#Banner p {
    font-size: 24px;
    font-weight: bold;
}