/*
    CSS Basics Demonstration
    Shows external styling and all required elements
*/

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Main banner styling - external CSS */
#banner {
    width: 80%;
    padding: 15px;
    margin: 20px auto;
    background-color: #f8f8f8;
    opacity: 0.85;
    font-size: 48px;
    font-family: 'Arial', sans-serif;
    color: #333;
    text-align: center;
    border-radius: 8px;
}

/* Story text container */
#mySummer {
    margin: 30px auto;
    height: 200px;
    width: 60%;
    background-color: #fff;
    opacity: 0.85;
    padding: 30px;
    font-family: 'Georgia', serif;
    font-size: 36px;
    text-align: center;
    line-height: 1.5;
    border-radius: 8px;
    color: blue; /* Demonstrating cascading */
}

/* Full-page background image */
#myPic {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Lists styling */
.lists-container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 8px;
}

/* Different list styles */
.decimal-list {
    list-style-type: decimal;
}

.roman-list {
    list-style-type: upper-roman;
}

.disc-list {
    list-style-type: disc;
}

.square-list {
    list-style-type: square;
}

/* Footer credits */
#credits {
    position: fixed;
    bottom: 15px;
    left: 0;
    right: 0;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: #333;
    background-color: #f8f8f8;
    opacity: 0.85;
    padding: 10px;
    text-align: center;
}

/* Link styling */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}