/*Archivo css de Arhamis Santana Hernández*/
* {
  margin: 0px;
  padding: 0px;
}

header {
  background-color: black;
  color: white;
  width: 100%;
  font-size: 3em;
  padding: 20px;
}

ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  background: lightgrey;
}

li {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: lightgrey;
  text-align: center;
  width: 100%;
  position: relative;
}

a {
  padding: 7px;
  color: rgb(74, 74, 74);
  text-decoration: none;
}

li:hover {
  background-color: rgb(74, 74, 74);
}

a:hover {
  color: lightgrey;
  background-color: rgb(74, 74, 74);
}

.desplegable {
  display: none;
  position: absolute;
}

li:hover .desplegable {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  top: 38px;
  left: 0px;
}
