.geologica-font {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0,
    "SHRP" 0;
}

.header{
    background-color: #5E733B;  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    min-width: 200px;
}

.header img {
    width: 80%;
    max-width: 200px;
    height: auto;
}    


.header h4{
    color:#F4EDE6;
    text-transform: uppercase;
    font-size: clamp(1rem, 3vw, 1.2rem);
    
}

.navbar {
    background-color: #a4bd7d;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    min-width: 200px;
}

.navbar a{
    text-decoration: none;
    color:#F4EDE6;
}

@media (max-width: 768px) {
    .navbar {
        display: grid;
        grid-template-columns: 1fr 1fr ; 
    }
}
