.Menu { position: relative; background-color: transparent; overflow: visible; transition: opacity 0.5s; cursor: pointer; } .Menu_closed:hover { opacity: 0.7; } .Menu_dotBox { position: relative; width: 100%; height: 33.3333%; background-color: transparent; } .Menu_dot { position: absolute; width: 600%; height: 500%; border-radius: 100%; top: 15%; left: 15%; transition: opacity 0.4s; } /*.Menu_dotA { transform: translateY(0%) scale(1,1); } .Menu_dotB { transform: translateY(79%) scale(1,1); } .Menu_dotC { transform: translateY(157%) scale(1,1); }*/ .Menu_dotA { transform: translate(-44.5%, -44%) scale(0.1,0.14); } .Menu_dotB { transform: translate(-44.5%, -44%) scale(0.1,0.14); } .Menu_dotC { transform: translate(-44.5%, -44%) scale(0.1,0.14); } .Menu:hover .Menu_dot { opacity: 1; } .Menu_button { position: relative; display: none; width: 100%; height: 100%; text-align: center; text-align: center; box-sizing: border-box; background-color: white; transition: background-color 0.5s, padding 0.5s; opacity: 0; z-index: 1; padding-top: 25%; color: rgb(60, 60, 60); } .Menu_button:hover { background-color: rgb(227, 227, 227); padding-left: 5%; } .Menu_button:active { transition: background-color 0.1s; background-color: rgb(207, 207, 207); }