.footerlink:hover {
    text-decoration: underline;
    color: #000000
}

.raised-box {
 /*   width: 500;
    height: 500px; */
    background-color: #ffffff;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Horizontal, Vertical, Blur, Color */
    margin: 10px;
    transition: box-shadow 0.3s ease-in-out;
}

/* Make it appear more raised on hover */
.raised-box:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); /* Increased shadow depth */
}

ul li:hover > a,
ul li.theme-menu-selected > a {
  text-decoration: underline;
}