:root {
    --dark: #111111;
    --light: #eeeeee;
    --light2: #eeeeff;
    --color-main: #0A82BA;
    --dark2: #444444;

    --bg-color: #00378aff;
    --border-radius: 25px;
}

.color1 {
    color: var(--light2);
}



*,
td,
content,
article,
a,
ul,
li,
nav {
    font-family: 'Exo', 'Titillium Web', Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: white;
    box-sizing: border-box;
}

html {
    padding: 0 0 0 0;
    margin: 0 0 0 0;

    background-color: #0A82BA;
    background-image: url('/anyag/bg-hexa.jpg');
    background-size: cover;
}

body {
    padding: 0 0 0 0;
    margin: 0 auto 0 auto;
    background-color: transparent;
    max-width: 1800px;
    margin: 0 auto 0 auto;
}

.content {
    margin: 0 auto 0 auto;
    padding-top: 20px;
    border: solid var(--color-main);
    border-width: 0 10px 0 10px;
    background-color: #09b1f3;
    /* background-color: #0f425a; */
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 26px;
    display: block;
    width: 100%;
    background-color: var(--color-bgcolor);
    color: white;
}

header, footer {
    /* background-color: #0f425a; */
    background-color: #001242;

    padding: 0 0 0 0;
    line-height: 30px;
    height: auto;
    display: block;
    border: 0;
}

header .toptrack {

    background-image: url('/anyag/bg-header.png');
    background-size: cover;
    padding: 20px;
    line-height: 60px;
    height: auto;
    display: block;
    border: 0;

}

header .navtrack {
    background-color: #41457f;
    padding: 20px;
    line-height: 30px;
    height: auto;
    display: block;
    width: 100%;
    overflow-wrap: break-word;
}

header img {
    text-align: left;
    width: 100px;
}

nav#mainmenu {
    background-color: transparent;
    padding: 0px;
    line-height: 60px;
    height: auto;
    display: inline-block;
    clear: both;
}

nav a {
    margin: 5px; 
    text-decoration: none;
    font-size: 40px;
    margin: 0 20px 0 20px;
    float:left;
}

nav a.selected {
    text-decoration: underline;
    font-weight: bold;
}

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

article {
    padding: 20px;
    width: 100%;
}

/* article img {
    width: 100%;
    max-width: 100%;
} */

footer, footer a {
    height: 100%;
    font-size: 10px;
}

footer .footer_logo {
    width: 200px;
    margin: 20px;
}

footer {
    padding: 20px;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


article img
{

  width: 100%;          /* Makes the image responsive to its container */
  aspect-ratio: 16/9;        /* Forces a uniform height across your grid row */
  object-fit: cover;    /* Crops the image perfectly without squishing it */

}

a.nounder
{
    text-decoration: none;
}

