#login{
    background-image: url('../images/login.jpg');
    background-size: contain;
    background-repeat: no-repeat;
}
#teoria{
    background-image: url('../images/teoria.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
#talento{
    background-image: url('../images/bg-talento.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
#home-index{
    background-image: url('../images/bg-home.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
#body-dashboard{
    background-image: url('../images/bg-dashboard.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.breathe-hover:hover {
  animation: breathe 1.6s ease-in-out infinite;
}