* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: rgb(252, 250, 248);
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: #0e0d0d;
    padding: 6px 4px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgb(78, 78, 231);
}
