.custom-menu {
display: flex;
justify-content: center;
gap: 30px;
}
.custom-menu a {
font-family: Arial, sans-serif;
font-size: 18px;
text-decoration: none;
color: black;
padding: 10px 20px;
border-radius: 20px;
transition: 0.3s;
}
.custom-menu a:hover {
background-color: black;
color: white;
}