#header1 {
    width: 100%;
    height: 90px;
    /*background: #1ef02fb9;*/
    /*background: #2c1ef0b9;*/
    background: #090909;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #151515;
}

#header2 {
    width: 100%;
    height: 50px;
    background: #090909;
    margin: 0px;
    position: sticky;
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#headerbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#titlepos {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#title p {
    font-size: 25px;
    color: rgb(0, 200, 0);
}

#headerContent {
    width: auto;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#headerContent div {
    padding: 15px;
}

#header1 a {
    color: rgb(0, 200, 0);
    text-decoration: none;
    margin: 10px;
    font-size: 25px;
}

#header2 a {
    color: rgb(0, 200, 0);
    text-decoration: none;
    margin: 10px;
    font-size: 23px;
}

#header1 a:hover {
    text-decoration: underline;
}

#header2 a:hover {
    text-decoration: underline;
}

#searchbarpos {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#searchbarpos p {
    color: rgb(0, 200, 0);
}

#search {
    display: flex;
    flex-direction: row;
    justify-content: right;
    margin: 0px;
}

#searchbar {}

#searchbutton {}

#searchbutton:hover {
    cursor: pointer;
}

@media screen and (max-width:750px) {
    #titlepos {
        display: none;
    }
    #headerContent div:not(#home) {
        display: none;
    }
    #headerContent {
        margin: 0px;
    }
    #header2 a {
        font-size: 20px;
    }
}