.header{
    height: 10vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.left-section {
        width: 33%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
}
.middle-section {
        width: 33%;
        height: 100%;
        display: flex;
        align-items: center;
}
.right-section {
    width: 33%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.home {
    width: 100px;
    height: 100px;
    cursor: pointer;
    z-index: 1;
    transition: transform .15s ease-in-out;
    margin-right: 2vw;
}

.home:hover {
    transform: scale(1.1);
}

.home-image {
    background: transparent;
    width: 100%;
    height: 100%;
    
}

.back-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}