@import url('inline-font1_1'); :root { --primary-color: #FF6347; /* Tomato */ --secondary-color: #4682B4; /* Steel Blue */ --background-color: #F0F8FF; /* Alice Blue */ --text-color: #333333; /* Dark Gray */ --heading-font: 'Roboto', sans-serif; --body-font: 'Lato', sans-serif; } body { font-family: var(--body-font); background-color: var(--background-color); color: var(--text-color); line-height: 1.6; margin: 0; padding: 0; font-size: 16px; } .container { max-width: 900px; margin: 20px auto; padding: 20px; background-color: #ffffff; /* White */ box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); border-radius: 8px; } h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: var(--primary-color); margin-top: 1.5em; margin-bottom: 0.5em; } h1 { font-size: 2.8em; text-align: center; color: var(--secondary-color); margin-bottom: 1em; } h2 { font-size: 2em; border-bottom: 2px solid var(--secondary-color); padding-bottom: 0.3em; } h3 { font-size: 1.5em; color: var(--primary-color); } p { margin-bottom: 1em; text-align: justify; } ul, ol { margin-left: 20px; margin-bottom: 1em; } li { margin-bottom: 0.5em; } a { color: var(--secondary-color); text-decoration: none; } a:hover { text-decoration: underline; } img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 5px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); } .img-caption { text-align: center; font-style: italic; color: #555; margin-top: -10px; margin-bottom: 20px; font-size: 0.9em; } /* Responsive Design */ @media (max-width: 768px) { body { font-size: 15px; } .container { margin: 10px; padding: 15px; } h1 { font-size: 2.2em; } h2 { font-size: 1.8em; } h3 { font-size: 1.3em; } } @media (max-width: 480px) { body { font-size: 14px; } h1 { font-size: 1.8em; } h2 { font-size: 1.5em; } h3 { font-size: 1.2em; } ul, ol { margin-left: 15px; } }