@import 'shared.css';

.header{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 10%;
    margin-left: 5%;
}

.header-content{
    background-image: url("headerBackground.png");
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.logo-img{
    height: 100px;
    margin: 0px;
    padding: 0px;
}

.nav{
    display: flex;
    justify-content: flex-end;
    align-items: end;
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
}

.nav a:hover{
    color: #fff;
    background-color:var(--secondary-color);
}

.nav a {
    color: #000;
    width: 100px;
    height: 50%;
    text-align: center;
    align-content: center;
    text-decoration: none;
    margin: 0px 1px 0px 1px;
    font-size: large;
}