/* -------->>  [[id:org:x6rhrjz0cok0][home:4]] */
:root {
    /* constants */
    --da-vinci-golden-ratio: 1.618;
    /* dimentions */
    --logo-bar-height: 150px;
    --page-width: 640px;
    /* theme colors */
    --green-mat: #235c44;
    --yellow-sun: #e6c74d;
}

body {
    font-family: Inter, system-ui, Roboto, Arial, sans-serif;
    line-height: 1.7rem;
    font-size: 1.3rem;
    margin: 0;
    padding: 0;
}

a {
    color: var(--green-mat);
}

main {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
}



table {
    text-align: center;
    width: 100%;
}


@media screen and (max-width:769px)
{
    table {
        font-size: 1rem;
    }
}
/* --------<<  home:4 ends here */



/* -------->>  [[id:org:2bta7hs0cok0][Header with Logo:2]] */
/* Header with Logo */

header {
    background: var(--green-mat);
    width: 100vw;
    padding: 0;
    margin: 0;
}

#logo-container {
    position: relative;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: var(--logo-bar-height);
}

#logo-container svg {
    position: absolute;
    bottom: 10px;
    stroke: none;
    fill: var(--yellow-sun);
}
/* --------<<  Header with Logo:2 ends here */



/* -------->>  [[id:org:ntab7hs0cok0][Navigation:3]] */
nav {
    background: var(--yellow-sun);
    width: 100vw;
    padding: 0;
    margin: 0;
}

#menu-container {
    position: relative;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: calc(var(--logo-bar-height) / (var(--da-vinci-golden-ratio) * 2) );
    line-height: calc(var(--logo-bar-height) / (var(--da-vinci-golden-ratio) * 2) );
}

#menu {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    margin: auto;
    padding: 0;
}

#menu li {
    display: inline;
    padding-right: 10px;
}

#menu li a {
    text-decoration: none;
}

#menu li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
/* --------<<  Navigation:3 ends here */



/* -------->>  [[id:org:1u9c8ht0cok0][Main content:2]] */
main {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
}
/* --------<<  Main content:2 ends here */



/* -------->>  [[id:org:lejftw40eok0][Footer:3]] */
footer {
    background: var(--yellow-sun);
    width: 100vw;
    padding: 0;
    margin: 0;
}

#footer-container {
    position: relative;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: calc(var(--logo-bar-height) / (var(--da-vinci-golden-ratio) * 3));
    line-height: calc(var(--logo-bar-height) / (var(--da-vinci-golden-ratio) * 3));
}

#footer {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    margin: auto;
    padding: 0;
}

#footer li {
    display: inline;
    padding-right: 10px;
}

#footer li a {
    text-decoration: none;
}

#footer li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
/* --------<<  Footer:3 ends here */


