app-header .HeaderContainer {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    background-color: white;
    border-bottom: 3px solid #7b0033;
    position: relative;
    z-index: 3;
}

app-header .HeaderContainerImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

app-header .HeaderImg {
    height: 100px;
    width: 250px;
    object-fit: contain;
    margin-left: 50px;
    cursor: pointer;

}

app-header .HeaderContainerNav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-right: 50px;
}

app-header .HeaderNavItem {
    font-size: 1.6rem;
    color: #000000;
    background-color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    cursor: pointer;
    font-family: "Lora", sans-serif;

}

app-header .HeaderBanner {
    width: 100%;
    height: 400px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    app-header .HeaderContainer {
        flex-direction: column;
        height: auto;
    }
    app-header .HeaderContainerNav {
        flex-direction: column;
        margin-right: 0px;
    }
    app-header .HeaderImg {
        margin-left: 0px;
    }
    
}