.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: top 0.3s;
}

.navbar a {
    text-decoration: none;
    cursor: pointer;
}

#mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

#mobile-menu.show {
    transform: translateX(0);
}

.title-font {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}
