.header {
    display: flex;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    font-family: 'Mulish';
    border-bottom-style: solid;
    border-bottom-width: 1.5px;
    border-bottom-color: rgba(110, 35, 35, 0.089);
    background-color: rgb(247, 244, 244);
}   

.header-left {
    display: flex;
    width: 240px
}

.header-logo{
    height: 250px;
    margin-top: -90px;
    margin-left: -8px;
    margin-right: 20px;
}

.header-right {
    flex: 1;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 80px;
    padding-right: 80px;
}

.header-button {
    border-radius: 110px;
    background-color: white;
    margin-right: 20px;
    font-size: 20px;
    border-style: none;
    transition-duration: 0.15s;
    background-color: rgb(247, 244, 244);
    padding: 7px;
}

.header-button:hover {
    cursor: pointer;
    text-shadow: 0.5px 1px rgb(59, 59, 59);
    background-color: rgb(2, 48, 32);
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

.header-button:active {
    opacity: 0.75;
}

.contact-us {
    border-radius: 110px;
    padding: 7px;
}

.contact-us:hover{
    background-color: rgb(2, 48, 32);
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

.footer {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: medium;
}