.header{
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: white;
    border-bottom-color: gray;
    border-bottom-style: solid;
    border-bottom-width: 1px;

    .left-section,
    .right-section,
    .middle-section{
        display: grid;
        align-items: center;
    }

    .middle-section{
        display: flex;
        margin-right: -5fr;
    }
    
    .logo{
        height: 80px;
        border-radius: 10px;
        margin-left: 30px;
    }

    button{
        font-size: 12px;
        margin: 10px;
        padding: 10px;
        border-radius: 20px;
        background-color: white;
        box-shadow: none;
        border: none;
    }

    .contact{
        font-size: 12px;
        margin: 10px;
        margin-right: 30px;
        padding: 10px;
        border-radius: 20px;
        background-color: white;
        box-shadow: none;
        border: none;
    }

    button:hover,
    .logo:hover{
        background-color: rgb(235, 235, 235);
        transition-duration: 80ms;
        cursor: pointer;
    }

    button:active{
        background-color: rgb(164, 164, 164);;
        transition-duration: 80ms;
        cursor: default;
    }
}