body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.back-button, .home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-button:hover, .home-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.home-button {
    background: linear-gradient(135deg, #060706, #363636);
}

.home-button:hover {
    background: linear-gradient(135deg, #000000, #292929);
}

.post-detail, .project-detail {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden; /* Ensure content stays contained */
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.detail-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: none;
    font-size: 2.5rem;
    margin-top: 0;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    /* Add a nice gradient like on list pages */
    background: linear-gradient(135deg, #43a047, #66bb6a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.detail-content {
    font-size: 1.1rem;
    line-height: 1.7;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: justify;
    color: #ffffff;
}

/* Paragraph styling */
.detail-content p {
    margin: 1.5rem 0;
    margin-bottom: 1.25em;
}

/* First paragraph styling */
.detail-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
}

/* Headings within content */
.detail-content h1, 
.detail-content h2, 
.detail-content h3, 
.detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.detail-content h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.detail-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.detail-content h4 {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Lists styling */
.detail-content ul, 
.detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.detail-content li {
    margin-bottom: 0.5rem;
}

.detail-content ul li {
    list-style-type: none;
    position: relative;
}

.detail-content ul li:before {
    content: "•";
    color: var(--accent-color, #00acc1);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.blog-post-detail .detail-content ul li:before {
    color: #43a047;
}

.project-detail .detail-content ul li:before {
    color: #00acc1;
}

/* Link styling */
.detail-content a {
    color: var(--accent-color, #00acc1);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.blog-post-detail .detail-content a {
    color: #66bb6a;
}

.project-detail .detail-content a {
    color: #26c6da;
}

.detail-content a:hover {
    opacity: 0.8;
    border-color: #0077cc;
}

.detail-content a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.detail-content a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Blockquote styling */
.detail-content blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color, #00acc1);
    background: #252525;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #e0e0e0;
}

.blog-post-detail .detail-content blockquote {
    border-left-color: #43a047;
}

.project-detail .detail-content blockquote {
    border-left-color: #00acc1;
}

.detail-content blockquote p {
    margin: 0.5rem 0;
}

/* Code styling */
.detail-content code {
    font-family: 'Fira Code', 'Courier New', monospace;
    background: #1a1a1a;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e6e6e6;
}
.detail-content code::-webkit-scrollbar {
    width: 8px;
}
.detail-content code::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}
.detail-content code::-webkit-scrollbar-thumb:hover {
    background: #777;
}
.detail-content code::-webkit-scrollbar-track {
    background: #1a1a1a;
}

/* Pre block for multi-line code */
.detail-content pre {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #333;
}

.detail-content pre code {
    background-color: transparent;
    padding: 0;
}

/* Table styling */
.detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.detail-content th {
    background: #252525;
    padding: 0.8rem;
    text-align: left;
    font-weight: 600;
    color: #fff;
}

.detail-content td {
    padding: 0.8rem;
    border-top: 1px solid #333;
    color: #e0e0e0;
}

.detail-content tr:hover {
    background: #252525;
}

/* Image styling in content */
.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: zoom-in;
    position: relative;
    border-radius: 5px;
}

.detail-content img::after {
    content: '🔍';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.detail-content img:hover {
    transform: scale(1.02);
}

.detail-content img:hover::after {
    opacity: 1;
}

/* Horizontal rule */
.detail-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    margin: 2rem 0;
}

/* Emphasis elements */
.detail-content strong {
    font-weight: 600;
    color: white;
}

.detail-content em {
    font-style: italic;
}

/* Special highlight box */
.detail-content .highlight-box {
    background: rgba(0, 172, 193, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 172, 193, 0.2);
}

.blog-post-detail .detail-content .highlight-box {
    background: rgba(67, 160, 71, 0.1);
    border: 1px solid rgba(67, 160, 71, 0.2);
}

/* Update image gallery styling */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    border-radius: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
}

.gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: zoom-in;
    position: relative;
}

.gallery-image::after {
    content: '🔍';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.gallery-image:hover::after {
    opacity: 1;
}

/* Detail date styling */
.detail-date {
    display: inline-block;
    margin-bottom: 25px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.detail-date i {
    margin-right: 0.5rem;
    color: #0077cc;
}

/* For proper content page when editing */
.detail-content p:last-child {
    margin-bottom: 0;
}

.project-detail .detail-title {
    background: linear-gradient(135deg, #00acc1, #26c6da);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 12px 25px;
    background: rgba(0, 172, 193, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.project-link:hover {
    background: rgba(0, 172, 193, 0.4);
    transform: translateY(-2px);
}

.post-navigation, .project-navigation {
    display: flex;
    justify-content: space-between;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.loading {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading i {
    font-size: 2rem;
    color: #43a047;
}

/* Admin buttons styling */
.admin-buttons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.edit-btn, .delete-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    
}

.edit-btn {
    background: rgba(0, 123, 255, 0.7);
    position: absolute;
    top: 15px;
    right: 60px;
}

.edit-btn:hover {
    background: rgba(0, 123, 255, 1);
}

.delete-btn {
    background: rgba(220, 53, 69, 0.7);
}

.delete-btn:hover {
    background: rgba(220, 53, 69, 1);
}

/* Lightbox effect for images */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-controls {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
    color: white;
    display: flex;
    align-items: center;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-toggle button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.language-toggle button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.language-toggle button i {
    font-size: 1rem;
}

.language-toggle button .lang-text {
    font-size: 0.9rem;
}

/* Comment Section Styling - Enhanced Version */
.comment-section {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.comment-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.comment-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.comments-container {
    margin-bottom: 2rem;
}

.no-comments {
    padding: 2rem;
    background-color: #252525;
    border-radius: 8px;
    color: #aaa;
    text-align: center;
    font-style: italic;
}

.comment {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

.commenter-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.comment-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.comment-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    white-space: pre-wrap;
    color: rgba(255, 255, 255, 0.9);
}

.delete-comment-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(231, 76, 60, 0.2);
    color: var(--danger-color);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.delete-comment-btn:hover {
    background-color: rgba(231, 76, 60, 0.4);
}

.delete-comment-btn i {
    margin-right: 0.3rem;
}

.comment-form {
    background-color: #252525;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.comment-form h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 95%;
    padding: 1rem;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #252525;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.25);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1rem;
}

.comment-submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 150px;
}

.comment-submit-btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Toast animation improvement */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .post-detail, .project-detail {
        padding: 25px;
    }
    
    .detail-title {
        font-size: 2rem;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-time {
        margin-top: 0.3rem;
    }
    
    .delete-comment-btn {
        top: 0.7rem;
        right: 0.7rem;
        font-size: 0.75rem;
    }
}

.detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.detail-header {
  margin-bottom: 2rem;
  position: relative;
}

.detail-meta {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Markdown content styling */
.detail-content h1, .detail-content h2, .detail-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #ffffff;
}

/* Comment section styling */
.comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.comments-header {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.comment {
  background: #2d2d2d;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.commenter-name {
  font-weight: bold;
  color: #ffffff;
}

.comment-date {
  color: #777;
  font-size: 0.85rem;
}

.comment-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.btn-primary {
  background: #0077cc;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #005fa3;
}

/* Enhanced styling for content sections */
.post-detail .content, 
.project-detail .content {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #333;
    margin: 2rem 0;
}

/* Improve headings in content */
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #ffffff;
    font-weight: 600;
}

.content h1 { font-size: 2.2rem; }
.content h2 { font-size: 1.8rem; }
.content h3 { font-size: 1.5rem; }
.content h4 { font-size: 1.3rem; }

/* Better paragraph spacing */
.content p {
    margin-bottom: 1.2em;
    color: #ffffff;
}

/* Enhance lists */
.content ul, .content ol {
    padding-left: 2em;
    margin-bottom: 1.2em;
}

.content li {
    margin-bottom: 0.5em;
}

/* Improve code blocks */
.content pre {
    background-color: #1a1a1a !important;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 16px;
    overflow: auto;
    margin: 1em 0;
}

.content code {
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

.content pre code {
    padding: 0;
    background-color: transparent;
}

/* Enhance blockquotes */
.content blockquote {
    border-left: 4px solid #444;
    color: #aaa;
    background-color: #252525;
    padding: 1em;
    border-radius: 0 4px 4px 0;
}

/* Make images responsive */
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5em 0;
}

/* Tables */
.content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5em 0;
}

.content th, .content td {
    border: 1px solid #333;
    padding: 8px 12px;
}

.content th {
    background-color: #252525;
    color: #fff;
}

/* Links */
.content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.content a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.hljs {
    background-color: #1a1a1a !important;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #333;
}
/* For better mobile display */
@media (max-width: 768px) {
    .content h1 { font-size: 1.8rem; }
    .content h2 { font-size: 1.5rem; }
    .content h3 { font-size: 1.3rem; }
    .content h4 { font-size: 1.1rem; }
    
    .content {
        font-size: 1rem;
    }
}