/* This will change the background color of the hero section */
.ud-hero#home {
    background-color: #000000 !important;
} 

/* Default link style */
a {
    color: white;
    text-decoration: none; /* Optional: removes underline */
}

/* Link hover style: golden box with black text */
a:hover {
    background-color: gold;
    color: black !important;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
} 
/* Default style for buttons in the navbar */
.navbar .ud-main-btn.ud-white-btn {
    background-color: white !important;
    color: black !important;
    border: none;
    transition: all 0.3s ease;
}

/* Hover style for buttons in the navbar */
.navbar .ud-main-btn.ud-white-btn:hover {
    background-color: gold !important;
    color: white !important;
}