body, div, a, img {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* color: #fff; */
    text-decoration: none;
}

.hotbar {
    background-color: #21409a;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: static;
    top: 0;
    width: 97%;
    z-index: 1000;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hotbar-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.hotbar-logo img:hover {
    transform: scale(1.1);
}

.hotbar-links {
    margin-right: 10px;
    display: flex;
    gap: 30px;
}

.hotbar-link {
    font-size: 18px;
    color: #d8d8d8;
    transition: color 0.3s;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hotbar-link:hover {
    transform: scale(1.05);
    color: #ffe02e;
}

@media (max-width: 768px) {
    .hotbar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
        height: auto;
    }

    .hotbar-logo {
        margin-bottom: 10px;
    }

    .hotbar-links {
        margin-right: 10px;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }

    .hotbar-link {
        font-size: 20px; 
    }
}
