body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.topmenubar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: #fff;
    z-index: 1000;
}

.menu-left, .menu-right {
    display: flex;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.menu-item:hover {
    color: #f0a500;
}
.container {
    padding: 60px 20px 20px 20px; /* Add padding to prevent content from being hidden under the fixed menu */
}
