#header
{
    margin-top: 5px;
    margin-bottom: 5px;    
    float: left;
    position: relative;
    background: linear-gradient(90deg, #2d6b16, #3b871e);
    background-image:
        linear-gradient(
            to right,
            rgba(40, 90, 20, 0.95) 0%,
            rgba(40, 90, 20, 0.75) 35%,
            rgba(40, 90, 20, 1.0) 100%
        ),
        url("../assets/header_strip.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.25);
    width: 100%;
    height: auto;

}

#wrapper
{
    float: left;
    position: relative;
    width: 98%;
    margin-left: 1%;    
}

#logo_wrapper
{
    float: left;
    position: relative;
    width: 20%;
}

#logo_image
{
    width: 96px;
    height: 96px;
    margin: 5px;
    float: left;
    position: relative;
    background-color: white;
    border-radius: 10px;
}

#logo_image:hover
{
    cursor: pointer;    
}

#title_wrapper
{
    margin-top: 10px;
    float: left;
    position: relative;  
    width: 20%;
}

#title_wrapper:hover
{
    cursor: pointer;    
}

#druidoo_title
{
    color: White;
    margin: 0px;
}

#druidoo_desc
{
    font-size: 20px;
    color: white;    
    transform:translate(5%,0)
}

#header_navbar
{
    width: 60%;
    position: relative;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar_form
{
    width: 100%;
}

.navbar_submit
{
    border-radius: 10px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    background: transparent;
    color: white;
    font-weight: bold;
    
}

.navbar_submit:hover
{
    background-color: white;
    color: #2d6b16;
}