:root {
    --col1: #64c800;
    /* --col1: #1451ebee; */
    /* --col1: #14eb43; */
    --col2: #eb1349;
    --col3: #ebae14;
    --col4: #08c731;
    --col5: #aaa;
    --col3a: #ebae1400;
    --iconHover: #999;

    --markerCol1: #fff798;
    --markerCol2: #f2acac;
    --markerCol3: #a7f2a4;

    --primary: #64c800;
    --bg-col1: #f8fff5;
    --bg-col2: #c8ffa0;
    --text: #1a2e0a;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
}

body {
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#container {
    margin: auto;
    max-width: 100rem;
    height: 100%;
    padding-top: 7px;
    font-size: 0.9rem;
}

header {
    background-color: white;
    color: var(--col1);
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem 1rem;
}

#head1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.7rem;
    font-weight: bold;
    flex-basis: 50%;
}


#head2 {
    color: var(--text);
    padding-top: 0.7rem;
    font-size: 1.1rem;
    flex: 1;
    vertical-align: center;
    text-align: right;

}

#head2 a{
    color: var(--text);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--text);
    margin-left: 0.5rem;
    padding: 0.2rem 0.7rem 0.2rem 0.7rem;
    transition: color 0.3s;    
}

#head2 a:hover {
    border-color: var(--col1);
    color: var(--col1);
}

.hNav {
    width: 100%;
}

.hNav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    font-size: 1rem;
    margin: 0;
}

.hNav a{
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.hNav a:hover{
    color: var(--col1);
}

.version {
    padding-left: 25px;
    font-size: 1.0rem;
}


main {
    background-color: var(--bg-col1);
    display: flex;
    flex-wrap: wrap;
    height: 89%;
}

nav {
    background-color: burlywood;
    flex-basis: 15%;
}

footer {
    background-color: var(--bg-col1);
    position: relative;
    bottom: 0px;
    left: 0px;
    padding: 5px 1rem;
    border-top: 1px solid black;
    /* height: 2rem; */
    text-align: right;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
}

.foot1 {
    color: green;    
}

.buttonDeko {
    background-color: var(--col1);
    color: var(--text);
    display: inline-block;
    border: none;
    text-align: center;
    text-decoration: none;
    padding: 5px 7px;
    font-size: 0.9rem;
    cursor: pointer;
}

.buttonDeko:hover {
    color: white;
}

.buttonFixedSize4 {
    width: 4rem;
}

.hiddenElement {
    display: none;
}

.markerColor1 {
    background-color: var(--markerCol1);
}

.markerColor2 {
    background-color: var(--markerCol2);
}

.markerColor3 {
    background-color: var(--markerCol3);
}

.textCenter {
    text-align: center;
}

.textBold {
    font-weight: bold;
}

.pale {
    opacity: 0.7;
}

.pale2 {
    opacity: 0.2;
}

.hidden {
    display: none;
}

.underline {
    border-bottom: 1px solid black;
}

.symbol {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.check::before {
    color: var(--color-secondary); 
    content: '\2714';
}

.uncheck::before {
    color: var(--markerCol2);
    content: '\2718';
}

.dotD::before {
    font-size: 16px;
    /* color: var(--markerCol3); */
    content: '\25CF';
}

/* mobile last! */
@media screen and (max-width:40rem){

    #container {
        height: auto;
    };

    nav{
       width: 100%;
    }

    main {
        display: block;
        height: auto;
        width: 100%;
    }
    
    content {
        border: 0px;
    }

    footer {
        display: block;
        position: static;
    }

}






