.menu {
position: fixed; 
top: 40px;            
left: 100px;      
background-color: #c0c0c0;
padding: 30px;
border-radius: 10px;
font-family: 'Bubblegum Sans', sans-serif;
color: #b3ecff;
box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.menu a {
display: block;       
text-decoration: none;
color: #333;
font-weight: bold;
margin: 8px 0;
padding: 6px 10px;
border-radius: 5px;
transition: background-color 0.3s;
}

.menu a:hover {
background-color: #ffffff;
}

