.menu {
    position: fixed;
    margin: 0;
    left: 0px;
    top:0px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    background: rgb(130, 180, 255);
    border-color: rgb(204, 255, 255);
    color:rgb(255, 0, 136);


    animation: scale linear forwards;
    animation-timeline: scroll(root);
    animation-range: 0px 300px;
    z-index:999;
}
.menu img{
    max-height: 40px;
    width: auto;
}

@keyframes scale {
    0% {
        background: transparent;
        border-color: transparent;
    }
    100% {
        background: rgb(130, 180, 255);
        border-color: rgb(204, 255, 255);
    }
}



.left-menu, .right-menu {
    gap: 10px;
}

.left-menu {
    position: absolute;
    left: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.right-menu {
    position: absolute;
    right: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
