/* ===================================
   EXTERNAL CSS STYLESHEET
   Used by: external-css.html
   =================================== */

body {
    font-family: Arial, sans-serif;
    margin: 16px;
}

h1 {
    text-align: center;
    color: #0f766e;
}

h2 {
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    color: #115e59;
}

p {
    font-size: 18px;
    color: #374151;
}

.monospace-text {
    font-family: 'Courier New', monospace;
}

.bold-text {
    font-weight: bold;
}

.italic-text {
    font-style: italic;
}

.center-text {
    text-align: center;
}

.right-text {
    text-align: right;
}

.styled-box {
    background: #eef6f3;
    padding: 12px;
    margin: 16px 0;
}

.image-container {
    text-align: center;
}

.styled-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 2px solid #0f766e;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
}

.center-heading {
    text-align: center;
}

.quote {
    background: #f0fdfa;
    border-left: 4px solid #0f766e;
    padding: 12px 16px;
    margin: 16px 0;
}

.back-link {
    text-align: center;
    margin-top: 24px;
}

.back-link a {
    color: #0f766e;
}

@media (max-width: 600px) {
    body {
        margin: 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }
}