* {
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #151515;
    color: gainsboro;
}

header {
    background: #151515;
    padding: 20px 500px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menu-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-list a {
    text-decoration: none;
    color: gainsboro;
    font-weight: bold;
    transition: color 0.3s;
}

.menu-list a:hover {
    color: #fff073;
}

.menu-extra {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

.menu-extra span {
    cursor: pointer;
    font-size: 0.9em;
    padding: 2px;
}

.menu-extra span:hover {
    background: #fff073;
}
