:root {
    --header-height: 7vh;
}

@media screen and (max-height:1080px) {
    :root {
        --header-height: 13vh
    }
}

p.icon {
    text-align: center;
    margin: 0px;
    font-size: clamp(.25rem, 0.65rem, 1rem) ;
    transition: transform .35s;
}


div.header {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
    max-height: var(--header-height);
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
}


div.left-header {
    width: 10vh;
}


div.right-header {
    color: aliceblue;
    /* background-color: aqua; */
    flex: 1;
    height: 100%;
}

div.icon_container_head {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    height: 100%;
}

div.icon_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-right: 2%;
}

img.logo {
    max-width: 70%;
    margin-left: 25px;
}

span.material-symbols-outlined {
    color: rgb(232, 170, 66);
    margin: 5px;
    text-align: center;
    cursor: pointer;
    transition: transform .3s;
    font-size: clamp(1rem, 4vh + 0.5rem, 3rem)
}

span.material-symbols-outlined:hover + p.icon {
    transform: scale(1.25);
}

span.material-symbols-outlined:hover {
    transform: scale(1.25);
}