/* * authors style.css * * This file contains the styles for the authors directory. * It includes global styles and specific styles for each author. */ /* Global styles */ * { margin: 0; padding: 0; } body { font-family: Arial, sans-serif; line-height: 1.6; } /* Author-specific styles */ .author-profile { background-color: #f5f5f5; border-radius: 8px; padding: 20px; } .author-info { display: flex; align-items: center; gap: 20px; } .author-info h3 { margin-top: 0; font-size: 1.2rem; } .author-info p { color: #666; font-size: 0.9rem; } .author-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; } .author-photo img { width: 100%; height: 100%; object-fit: cover; } /* Responsive styles */ @media (max-width: 768px) { .author-info { flex-direction: column; align-items: start; } }