body {
    margin: 0;
    font-family: "Raleway";
    background-color: #0b0b0b;
}

.topbar {
    background-color: #0f0f0f86;
    color: white;
    width: 100%;
    height: 62px;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: rgba(36, 36, 36, 0.377) 1px 1px;
    backdrop-filter: blur(5px);
}

.logoimg {
    height: 45px;
    margin-left: 10px;
    margin-right: 8px;
    margin-top: 3px;
}

.topbar button {
    margin-left: 1px;
    background: none;
    border: none;
    cursor: pointer;
    color: #b9b9b9;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font: bold;
    transition: color 0.2s ease;
}

.topbar button:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .topbar button {
        font-size: 14px;
    }
}