/*
Theme Name: MyTheme
Theme URI: https://example.com/mytheme
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme with maximum width of 1920px.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container with maximum width 1920px */
.container {
    max-width: 1920px;
    margin: 0 auto;
 
}

/* Header styles */
header {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Navigation menu */
.main-navigation {
    display: flex;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Main content */
main {
    padding: 40px 0;
}

/* Page content */
.page-content {
    max-width: 1920px;
    margin: 0 auto;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
}