
.dropdown{
  display: inline-block;
  z-index: 11; 
}

.dropdown button{
  background-color: hsl(0, 0%, 80%);
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

.dropdown a{
  display: block;
  color: black;
  text-decoration: none;
  padding: 10px 15px;
}

.dropdown .content{
  display: none;
  position: absolute;
  background-color: hsl(0, 0%, 95%);
  min-width: 100px;
  box-shadow:2px 2px 5px hsla(0, 0%, 0%, 0.8);
}

.dropdown:hover .content{
  display: block;
}

.dropdown:hover button{
  background-color: hsl(0, 0%, 70%);
}

.dropdown .content a:hover{
  background-color: hsl(0, 0%, 90);
}

.font-weight{
  font-weight: bolder;
  color: black;


}

.text-decoartion-none{
  text-decoration: none;
}

.margin-right{
  margin-right: 30px;
  margin-top: 20px;

  align-items: center;
}

.primaryColor{
  color: white;
}

.flex{
  display: flex;
}