.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FCFCFC;
  padding: 10px 20px;
  z-index: 50;
  position: fixed;
  right: 0;left: 0;top: 0;
  box-shadow: 0 0 10px #ddd;
}

nav{
  position: fixed;
  top: 0;right: 0;bottom: 0;left: 30%;
  box-shadow: 0 0 4px #ddd;
  transition: 0.1s ease;
  background: #FFFFFF;
  
}
nav ul{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  margin: 70px 20px 0 0;
  
}
nav ul li{
  list-style: none;
  transition: 0.3s ease all;
  text-align: right;
}
nav ul li a{
  color: black;
  text-decoration: none;
  
  
}

.icons, .icon{
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.menu img{
  position: relative;
  cursor: pointer;
  z-index: 10;
  margin-top: 4px;
}



.logo a{
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 24px;
}