﻿
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
}

.menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0,0,0,0.4);
    /*background: none;*/
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    color: white;
    text-transform: uppercase;
}

    .logo img {
        height: 40px;
    }


.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: white;
    font-size: 1.5em;
}

    .hamburger span {
        height: 3px;
        width: 25px;
        background: #fff;
        margin: 4px 0;
        transition: 0.4s;
    }

nav {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
}

    nav a {
        color: #fff;
        text-decoration: none;
        padding: 12px;
        border-bottom: 1px solid #333;
    }
