/*
Theme Name: satyam-theme-dev
Theme URI: https://example.com/mytheme
Author: satyam prajapati
Author URI: https://example.com
Description: A minimal starter theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
*/


/* Optionally add global CSS here */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.main-nav {
    background: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .logo a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: #f39c12;
}
