У данного меню есть недостаток, она работает отлично только на мобильной версии, так как собиралось именно под мобильную версию <div class="menu"> <nav class="menu-nav"> <a href="https://yandex.ru">Main</a> <a href="#">Porfolio</a> <a href="#">About</a> </nav> <a href="#" class="menu-btn"> <span></span> </a> </div> <style> .section { height: 20px; background-color: transparent; display: flex; justify-content: center; align-items: center; position: fixed; top: 30px; z-index:3333; } .menu-btn { display: block; width: 50px; height: 50px; background-color: #fff; border-radius: 60%; position: relative; box-shadow: 0 0 10px rgba(0,0,0,0.5); } .menu-btn span, .menu-btn span::before, .menu-btn span::after { position: absolute; top: 50%; margin-top: -1px; left: 50%; margin-left: -10px; width: 20px; height: 2px; background-color: #333; } .menu-btn span::before, .menu-btn span::after { c