/*
Theme Name: GAHUS Dekor Theme
Theme URI: https://gahusdekor.pl
Author: Gepard
Author URI: https://gahusdekor.pl
Description: Awesome theme for that project
Text Domain: gahus
Version: 3.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.3
License: Private
License URI: http://www.gahusdekor.pl/licenses/themelicence.html
 */

* {
    box-sizing: border-box;
}
:root {

    --site-color:blue;
    --link-color: red;
    --hover-color: #0fea83;
    --sections-color: #ba04f1;
    -moz-text-decoration-color: green;


}
body {

    color: var(--site-color);
}
ul li :hover {
    color: black;

}
header {
    color: deeppink;

}
footer {
    color: fuchsia;
}

#site-header {
    display: grid;
    grid-template-columns: 1fr 7fr;
    padding: 1rem;
    background: greenyellow;
    max-height: 350px;
}
#logo {
    max-width: 250px;
    max-height: 125px;
    background: greenyellow;
}
.custom-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.navmenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
ol, ul {
    list-style-type: none;
    display: flex;
    gap: 2em;
}
.navmenu a {
    color:deeppink;
    text-decoration: none;
}
.footer-menu a {
    color:greenyellow;
    text-decoration: none;
}
.extra-menu a {
    color:orangered;
    text-decoration: none;
}
a {
    color: yellow;
}
a:hover {
    color: black;
    text-decoration: underline;
}
section {
    color: var(--sections-color);
}
