/* Base styles for all screens */
body {
    background: black;
    color: #8EDBFF;
    font-family: Arial, Helvetica, sans-serif; /* Fallback for mobile compatibility */
    margin: 0; /* Remove default margins for better mobile layout */
    padding: 10px; /* Add some padding for small screens */
}

A:link {
    color: #F1F1F1;
    text-decoration: none;
}
A:visited {
    color: #bfbfbf;
    text-decoration: none;
}
A:active {
    color: yellow;
    text-decoration: none;
}
A:hover {
    color: yellow;
    text-decoration: none;
}

h1, h2 {
    text-align: center;
    font-family: "Copperplate Gothic Bold", Arial, sans-serif; /* Fallback added */
    font-size: 2rem; /* Relative unit, adjusts to root font size */
    margin: 0.5em 0; /* Better spacing for mobile */
}

p {
    font-size: 1.1rem; /* Slightly larger for readability */
    line-height: 1.5; /* Improves text readability */
    margin: 0.5em 0;
}

blockquote {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1em;
}

/* Media query for mobile screens (up to 768px wide, typical for phones) */
@media screen and (max-width: 768px) {
    h1, h2 {
        font-size: 1.5rem; /* Smaller headers for mobile */
    }
    p {
        font-size: 1rem; /* Readable text size for mobile */
    }
    blockquote {
        font-size: 0.9rem; /* Slightly smaller for quotes */
    }
    body {
        padding: 15px; /* More padding for touch-friendly spacing */
    }
}

/* Optional: Extra small screens (below 480px, e.g., older phones) */
@media screen and (max-width: 480px) {
    h1, h2 {
        font-size: 1.2rem;
    }
    p {
        font-size: 0.9rem;
    }
    blockquote {
        font-size: 0.8rem;
    }
}
