/*Layer 1*/ .dropdown { width: 80%; margin: auto; } /*Layer 2*/ .dropbtn { /*Button*/ width: 100%; background-color: white; border: 1px solid #D0D0D0; cursor: pointer; /*Text*/ color: #828282; padding: 4% 5%; font-size: 16px; text-align: left; } .dropdown-content { display: none; position: absolute; background-color: white; width: 19%; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5); z-index: 1; } /*Reactivness*/ .dropdown-content a { padding: 3% 4%; text-decoration: none; display: block; text-align: left; } .dropdown-content a:hover {background-color: #f1f1f1} .dropdown:hover .dropdown-content { display: block; } .dropdown:hover .dropbtn { background-color: #D0D0D0; border: 1px solid black; color: black; }