body, html {
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #161616;
  display: flex;
  z-index: 1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-sizing: border-box;
}

.logo img {
  height: 70px;
  width: 70px;
  margin-left: 20px;
  margin-top: 10px;
}

.user{
  position: absolute;
  right: 0;
  margin-right: 15px;
}

.profileImg {
  height: 70px;
  width: 70px;
  margin-left: 20px;
  margin-top: 5px;
  cursor: pointer;
  border: 3px solid black;
}

.navbar ul {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 25px;
  list-style: none;
  display: flex;
  gap: 15px;
}

.navbar ul li:nth-child(3) a {
  margin-right: auto;
}

.navbar a {
  color: #ffff;
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline overline;
}