html, body {
    background-color: #153052; /* Bluish-dark blue color */
    color: white; /* Optional: sets text color to white for contrast */
    font-family: Arial, sans-serif; /* Optional: cleaner font */
}

a {
    text-decoration: none;
    display: inline-block;
    color: #31ccff;
    transition: transform 0.3s ease, color 0.3s ease;
}

a:hover {
    transform: scale(1.2);
}

pre {
    background-color: #2d2d2d; /* Dark gray background */
    color: #f8f8f2; /* Light text color */
    border: 1px solid #444; /* Slightly darker border */
    padding: 15px; /* Inner spacing */
    overflow-x: auto; /* Scroll horizontally for long lines */
    font-family: "Courier New", Courier, monospace; /* Monospace font */
    border-radius: 8px; /* Rounded corners */
    line-height: 1.5; /* Improve readability */
}

/* Specific XML-like syntax colors */
.tag {
    color: #f92672; /* Pink for tags */
}
.attribute {
    color: #a6e22e; /* Green for attributes */
}
.value {
    color: #e6db74; /* Yellow for attribute values */
}

/* Footer Styling */
.footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center; /* Ensures all footer content is horizontally centered */
    background-color: #1d3a5f; /* Slightly lighter bluish shade */
    border-top: 1px solid #31ccff; /* Matches the link color */
}

.footer a {
    color: #31ccff;
    text-decoration: underline; /* Underline to distinguish footer links */
}

.footer a:hover {
    transform: scale(1.1);
    color: #1bb2e6; /* Slightly darker hover color for footer links */
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.flashing {
    font-weight: bold;
    color: red;
    animation: flash 1s infinite;
}
