body {
    margin: 0;
    font-family: Arial;
}
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
}
.left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.middle {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.middle a {
    color: white;
    text-decoration: none;
    margin: 5px;
}
.middle a:hover {
    text-decoration: underline;
}
.right {
    text-align: right;
}
@media screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .middle {
        justify-content: flex-start;
        width: 100%;
        gap: 5px;
    }

    .right {
        text-align: left;
        width: 100%;
    }
}
