.header {
    position: fixed;
    top: 0px;
    left: 148px;
    right: 80px;
    display: flex;
    padding-top: 30px;
    padding-bottom: 5px;
    padding-right: 31px;
    border-bottom-style: solid;
    border-width: 2px;
    background-color: rgb(5, 9, 9);
    z-index: 10;
}

.left-section-header {
    display: flex;
    font-family: "Jersey 10", "Arial";
    align-items: center;    
    margin-right: 100px;
    flex: 1;
}

.title-header {
    font-size: 36px;
    margin-right: 28px;
}

.text-header {
    padding-top: 8px;
    font-size: 16px;
    margin-right: 28px;
    cursor: pointer;
    padding-right: 5px;
    color: white;
    text-decoration: none;
}

.text-header:hover {
  color: rgb(248, 222, 126);
}

.middle-section-header {
    display: flex;
    align-items: center;
    max-width: 500px;
    flex: 1;
    justify-content: end;
}

.searchbar {
    font-family: "Jersey 10", "Arial";
    border-color: white;
    border-width: 2px;
    border-style: solid;
    background-color: rgb(5, 9, 9);
    color: white;
    padding-left: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-right: 10px;
    width: 0;
    flex: 1;
}
.searchbar::placeholder {
    color: white;
}

.right-section-header {
    flex: 1;
    display: flex;
    vertical-align: center;
    justify-content: end;
    padding: 10px;
    max-width: 50px;

}

