body {
    background-color: #0d0d0d !important;
    font-family: 'Space Grotesk', sans-serif !important;
    margin: 0;
    color: white;
}

.desktop_navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
    padding: 15px 50px;
    box-sizing: border-box;
    z-index: 1000;
}

.desktop_navbar_logo_img {
    height: 40px;
}

.desktop_navbar_link {
    color: #8e8e93;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
}

.desktop_navbar_link2 {
    background-color: #2ed573;
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.mobile_navbar {
    display: none;
}

@media (max-width: 768px) {
    .desktop_navbar { display: none; }
    .mobile_navbar { display: flex; justify-content: space-between; }
}

.copyright_div {
    text-align: center;
    padding: 30px;
    background-color: #121212;
}

.copyright {
    color: #8e8e93;
    text-decoration: none;
    font-size: 0.85rem;
}
