@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.nav{
  position: relative;
  display: flex;
  align-items: center;
  height: 9vw;
  width: 100%;
box-shadow: 0 10px 60px rgba(0, 00, 0, 1);
  background-image: url('assets/navBar.png');
  position: sticky;
  top: 0px;
}
.nav img{
  height: 8vw;
  width:8vw;
  border-radius: 50%;
  position: absolute;
   margin: 3px 10px;
   border: 1px solid white;
}
.nav ul{
  display: flex;
  position: absolute;
  right: 10vw;
  gap: 2vw;
}
.nav ul li {
  list-style: none;
  padding: 5px;
  font-size: 0.8em;
  font-weight: bolder;
  color: whitesmoke;
  position: relative;
}
 .nav ul a{
  text-decoration: none;
}
.nav ul a li:hover {
  color: aqua;
}