.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3333ff;
    padding: 15px 30px;
}

.logo {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    color: #fff;
    text-decoration: none;
}

.menu a:hover {
    text-decoration: underline;
}

