@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

body {
font-family: 'Roboto', sans-serif;
}

img {
width: 250px;
}

.navigation {
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
background-color: #76b900;
color: white;
width:100%;
text-transform: uppercase;
}

.mylogo {
margin-left: 20px;
}

.mylogo a {
text-decoration: none;
color: white;
}

.mymenu a {
text-decoration: none;
color: white;
}

.mymenu a:hover {
text-decoration: none;
color: white;
}

.mymenu {
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
gap:24px;
list-style:none;
cursor:pointer;
margin-top: 15px;
}

.mymenu li:hover .mysubmenu > li {
display: block;
background-color: #76b900;
}
 
.mysubmenu {
display: flex;
flex-direction: column;
position: absolute;
}

.mysubmenu li {
display: none;
}

.navbar {
    text-transform: uppercase;
    background-color: #76b900;
}

thead {
text-transform: uppercase;
color: #76b900 !important;
font-family: geforce-bold;
}

.custom-control {
margin-left: 20px;
}

#darkSwitch {
cursor: pointer;
}

@media only screen and (max-width: 600px) {
.custom-control {
    margin-left: 30px;
}
.mylogo {
margin-left: 30px;
margin-top: 10px;
}
}

[data-theme="dark"] {
background-color: #262626 !important;
color: #eee;
}

[data-theme="dark"] table {
color: #eee;
}