/* Import Bungee font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

/* Menu links style */
.main-navigation a {
    font-family: 'Bungee', sans-serif !important;
    color: #ffffff !important; /* white text */
}

/* Optional: menu link hover effect */
.main-navigation a:hover {
    color: #333333 !important; /* change to any highlight color */
}

/* Hide title only on the homepage */
.home .entry-title {
    display: none;
}

/* Force content to center */
.home .site-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}