
/* ------ */

.link{
  text-decoration: none;
  color: inherit;
  padding: 10px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.1rem;  
  position: relative;
  border: none;
  background-color: transparent;
}

.link:after{
  content: "";
  width: 0;
  height: 4px;
  background-color: coral;
  position: absolute;
  bottom: 0;
  right: 50%;
  transition: all .5s;
  will-change: width;
}

.link:hover:after{
  width: 100%;
  right: 0;
}
/* -------------- */

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  overflow: auto;
}

.sombraOut {
  filter: drop-shadow(0 2px 7px rgba(119, 119, 119, 0.397));
}

.sombraIn{
  box-shadow: 7px 9px 15px black inset;
}
