/* External Stylesheet for SEO Test Site */

body {
    background-color: #f8f8f8; /* Light grey background */
}

h1 {
    color: navy;
}

.external-style-applied {
    border: 2px solid green;
    padding: 5px;
    margin-top: 10px;
}

.css-background-image {
    background-image: url('placeholder.jpg');
    background-size: cover;
    height: 100px;
    width: 200px;
    border: 1px dashed red;
    margin-top: 15px;
    padding: 10px;
    color: white; /* Make text visible */
    text-shadow: 1px 1px 2px black; /* Add shadow for readability */
}

.hidden-content {
    display: none;
} 