
/*
Theme Name: Twenty Twenty-Two Child
Theme URI: http://example.com/twenty-twenty-two-child
Description: A child theme for the Twenty Twenty-Two theme with a modern tech style.
Author: Your Name
Author URI: http://example.com
Template: twentytwentytwo
Version: 1.0
*/

@import url("../twentytwentytwo/style.css");

/* Custom styles for a cool tech-style website */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    color: #00bcd4;
}

nav {
    /*background-color: #333;*/
    padding: 15px 0;
    text-align: center;
}

.is-references
{
	padding-left: 0px !important;
}

nav a {
    /*color: #ffffff;*/
    font-size: 1.1em;
    text-decoration: none;
    padding: 10px 20px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 50px;
}

h1, h2, h3 {
    color: #ec6642;
}

footer {
    background-color: #1a1a1a;
    color: #888888;
    text-align: center;
    padding: 15px 0;
}

button {
    background-color: #ec6642;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #007b8a;
}

/* Mobile Menu Background */
@media (max-width: 768px) {
    .main-navigation {
        background-color: transparent; /* Default to transparent */
    }

    /* When the mobile menu is open, set the background color */
    .main-navigation.toggled-on {
        background-color: #333333; /* Background color when menu is open */
    }

    /* Optional: Change the background color of the mobile menu toggle button */
    .menu-toggle {
        background-color: #333333; /* Background color of the menu toggle button */
        color: white; /* Icon color */
    }
	
	nav a
	{
		color: #0d0d0d;
	}
}

@media (max-width: 1279px) {
	main {
    padding: 0px;
}
}