@import url('https://fonts.googleapis.com/css2?family=Funnel+Display&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.topbar {
    background-color: #de51e8; /* Updated color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px; /* Decreased padding to 1px */
    color: white;
}

.logo {
    width: 50px; /* Adjust the size of the logo */
    height: auto;
}

.nav-links {
    display: flex;
    gap: 10px; /* Space between buttons */
}

.topbar a {
    text-decoration: none;
    color: white; /* Default text color */
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #de51e8; /* Default background color */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.topbar a.active {
    background-color: black; /* Active button background color */
    color: white; /* Active text color */
    pointer-events: none; /* Disable clicking */
}

.topbar a:hover {
    background-color: white; /* Change background color to white on hover */
    color: black; /* Change text color to black on hover */
}

.middle-text {
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white; /* Text color */
    font-size: 16px; /* Text size */
    margin: 0 20px; /* Space around text */
}
