/* Título de presentación */
.presentation{
    background-image:
      url("../img/software-background/sofware.jpg");
    background-position: center;
    background-size: cover;
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
}

/* Barra de navegación de la página */
.resumeBar{
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background-color: var(--lightBlue);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--darkBlue);
}



/* Botón para ver más */
.more-info {
    display: inline-block ;
    position: relative ;
    color: var(--primary) ;
    text-decoration: none ;
    font-size: 1.3rem;
    border-radius: 5px;
    font-weight: 600;
}
.more-info:after {
  content: "" ;
  display: block ;
  margin: auto ;
  height: 2px ;
  width: 0px ;
  transition: all .8s ;
  color: var(--darkBlue) !important;
}
.more-info:hover:after {
  width: 100% ;
  background: var(--darkBlue) ;
  color: var(--darkBlue) !important;
}
