.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 15px 30px;
}

.logo img {
    height: 80px;
    width: 100px;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu a:hover {
    color: #00c3ff;
}

/* Responsive nav */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: flex-end;
    }
}
