:root {
    --main-border-radius: 25px 25px 25px 25px;

    --background-color-head-foot: linear-gradient(90deg, #051da1, #2E8B57);
    /* --background-color-head-foot: linear-gradient(90deg, #a11c05, rgb(228, 200, 42)); */
    /* background-color: #b52e05; */

    --global-color: white;

    --text-standard-color: black;

    --text-theme-color: #2E8B57;
}
   
body {
    /* font-family: 'Indie Flower', cursive; */
    font-family: "Roboto Condensed", sans-serif;
    /* font-family: Arial, sans-serif; */
    line-height: 25px;
    margin: 10px;
    padding: 0;
    background-color: var(--global-color);
    margin-bottom: 70px;

}
.header {
    background: var(--background-color-head-foot);
    color: var(--global-color);
    padding: 20px;
    text-align: center;
    border-radius: var(--main-border-radius);   
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    opacity: 1;
    margin: 10px;
}
.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: var(--main-border-radius);   
    margin: 10px;
}
.nav a {
    text-decoration: none;
    color: var(--text-standard-color);
    font-weight: bold;
}
.nav a:hover {
    color: var(--text-standard-color);
}
.content {
    margin: 10px;
    justify-content: center;
}
.footer {
    background: var(--background-color-head-foot);
    color: var(--global-color);
    text-align: center;
    padding: 20px;
    bottom: 0;
    height: 100px; 
    line-height: 10px;
    border-radius: var(--main-border-radius);
    margin: 10px;  
}
section {
    width: 50%;
    float: left;
}
span {
    font-weight: bold;
    color: var(--text-theme-color);
}

img {
    width: 100%;
    height: auto;
    border-radius: var(--main-border-radius);    
}
button {
    width: 45px;
    height: 45px;
    text-align: center;
    border-style: solid; 
    border-radius: 5px 5px 5px 5px;
    border-color: var(--text-theme-color);
    /* background-color: #ffffff; */
    background: transparent;
    border: 1 solid;
    position: absolute;
    /* left: 5%; */
    box-shadow: none;
    font-size: 30px;
} 

.grid-container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}
hr {
    border: none;
    /* border-top: 1px solid #000000; */
    border-top: 2px solid var(--text-theme-color);
    margin: 50px 0 40px 0;
    /* width: 95%;
    display: block;
    margin-left: auto;
    margin-right: auto; */
}

@media screen and (max-width: 1000px) {

    body {
        font-size: 1.2em;
        text-align: justify;
        line-height: 1.6;
        margin: 6px;
    }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        flex-basis: 50%
    }

    .nav a {
        text-decoration: none;
        color: var(--text-standard-color);
        font-size: 1.2em;
        margin: 2px;
    }

    .grid-container {
        grid-template-columns: auto;
    }

    .header {
        height: 160px;   
    }

    .footer {
        height: 160px;
        line-height: 1.2;
    }

    section {
        width: 100%;
        float: None;
        display: block;
        justify-content: center;
    }
    }