
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#menu {
  width: 100%;
  background: black;      
  position: fixed;         
  top: 0;
  left: 0;
  z-index: 1000;
}

#menu .menu ul {
  list-style: none;
  display: flex;          
  justify-content: flex-end;
  padding: 15px 40px;   
}

#menu .menu ul li {
  margin-left: 30px;
}

#menu .menu ul li a {
  text-decoration: none;
  color: white;     
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

#menu .menu ul li a:hover {
  color: rgb(165, 9, 105);   
}

body {
  font-family: Arial, sans-serif;
  padding-top: 70px;  
}