#menu {
    top: 0px;
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    border-radius: 0px 0px 3px 3px;
    width: 100%;
    height: 80px;
    transition: box-shadow 100ms linear;
}

#menu img {
    margin-left: 20px;
    height: 60px;
}

.menuLink {
    position: relative;
    font-size: 22px;
    margin-right: 30px;
    left: 20px;
}

.scrolled {
    box-shadow: -3px 8px 20px rgb(189, 189, 189);
}

@media (max-width: 1000px) {
    .menuLink {
        font-size: 16px;
    }
}
