/* ===== NAVBAR ===== */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    color: black;
    flex-wrap: nowrap;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 50px;
    margin:40 px;
}
.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
}
nav ul li a {
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: blue;
}
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: nowrap;
}


/* ===== FOOTER ===== */


.Footer {
  background-color: white;
  color: black;
  padding: 40px 20px 20px;
  text-align: center;
  margin: 40px
}

.Footer-logo h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.Quick-links ul {
    list-style: none;
    padding: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}
