Please tell me why for some reason media queries do not work? Min-width works, but max-width is not, I can not understand what the problem is.
.menu_list { display: flex; justify-content: space-around; list-style: none; background-color: rgba(0, 0, 0, 0.6); } @media (max-width: 500px) { .menu_list { background-color: rgba(155, 100, 142, 0.5); } } 