@import url(https://adeotype.pages.dev/fonts/web.css);

/* General Styles */
body {
    font-family: 'Dyfodol Now Text', sans-serif;
    background-color: #f1f3f4;
    color: #202124;
    padding: 24px;
    line-height: 1.6;
    margin: 0;
}

/* Main Content Container */
.content-container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Headings */
h1 {
    font-family: 'Dyfodol Now', sans-serif;
    font-size: 2em;
    margin-top: 0;
}

h2 {
    font-family: 'Dyfodol Now', sans-serif;
    font-size: 1.6em;
    margin-top: 32px;
}

h3, h4 {
    font-family: 'Dyfodol Now', sans-serif;
    margin-top: 24px;
}

/* Paragraphs */
p {
    margin-bottom: 16px;
}

/* Blockquote */
blockquote {
    font-family: 'Dyfodol Now', sans-serif;
    padding: 12px 16px;
    border-left: 4px solid #1a73e8;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 16px 0;
}

/* Preformatted Text */
pre {
    font-family: 'Dyfodol Now Code', monospace;
    background-color: #f8f9fa;
    color: #202124;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #e0e0e0;
}

/* Text Styling */
strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

u {
    text-decoration: underline;
}

s {
    text-decoration: line-through;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Links */
a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Text Alignment */
p[style*="text-align: center"] {
    text-align: center;
}

p[style*="text-align: right"] {
    text-align: right;
}

p[style*="text-align: justify"] {
    text-align: justify;
}

/* Background and Font Colors */
p span[style*="background-color"] {
    padding: 4px 6px;
    border-radius: 4px;
}

p span[style*="color"] {
    font-weight: 600;
}
