TheReaderPage Logo

TheReaderPage

// styles.css body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 15px 0; text-align: center; font-size: 24px; display: flex; justify-content: center; align-items: center; } header img { height: 50px; margin-right: 10px; } nav { display: flex; justify-content: center; background-color: #444; padding: 10px; } nav a { color: #fff; margin: 0 15px; text-decoration: none; font-weight: bold; } .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; display: flex; flex-wrap: wrap; gap: 20px; } .main-content { flex: 2; } .sidebar { flex: 1; background: white; padding: 20px; border-radius: 8px; } footer { background-color: #333; color: #fff; text-align: center; padding: 10px 0; margin-top: 20px; } @media (max-width: 768px) { nav { flex-direction: column; text-align: center; } nav a { margin: 5px 0; } .container { flex-direction: column; } }