@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.open-sans-normal {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
      "width" 100;
  }

:root {
    --main-color: #005503;
    --second-color: #323232;
}

* {
    font-family: "Tenorite", "Open Sans", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
    border: 0px solid black;    
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    color: white; 
    background-color: var(--main-color);   
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

header {
    background-color: var(--second-color);
    padding: 5vh 5vw;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    align-content: center;
    background-color: var(--main-color);
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto; 
    padding: auto;
    margin: 5vh 0;
    width: 100%;
}

footer {
    background-color: var(--second-color);
    padding: 1vh 0;
    text-align: center;
}

header, footer{
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
}

h1 {
    font-size: 60pt;
    margin: 0 auto;
    padding: 0;
    padding-top: 1rem;
}

h2 {
    font-size: 32pt;
    font-weight: normal;
    margin: 0 auto;
    padding: 0.5rem;
}

h3 {
    font-size: 16pt;
    font-weight: normal;
    margin: 0 auto;
    padding: 0.3rem;
}

p {
    width: 100%;
    margin: 0 auto;
}

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

.resource-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: center;
    max-width: 500px;
}

.resource-panel img {    
    max-height: 500px;    
}

.feature-panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    text-align: left;
    margin: 0 2rem;
    margin-left: 5vw;
    max-width: 1500px;
}

.feature-panel div {
    width: 100%;
    padding: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
}

.feature-panel h2 {
    margin: 0; 
    padding-left: 0;   
}

.feature-panel p {
    padding: 0;
    text-align: justify;
    padding-left: 0.2em;
}

.feature-panel #content {  
    justify-content: flex-start;     
    width: 100%;   
    margin: 0 1rem;        
}

.feature-panel #icons {
    align-items: center;
    justify-content: space-evenly;
    width: 30%;
    margin: 0;
}

.feature-panel #icons img {
    height: 100px;    
}

.feature-panel #picture {    
    width: 30%;
    margin: 0;
}

.feature-panel #picture img {    
    object-fit: cover;
    width: 100%;
    max-height: 250px;    
}

.spacer {
    height: 70px;
    width: 100%;
    margin: 5vh 0;
    background-color: var(--second-color);
}