html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif; 
}

main {
  flex: 1 0 auto;
}


.nav__logo {
    width: 63px;
    height: auto;
}

.line{
    width: 100%;
    height: 2px;
    background-color: rgba(255,255,255, 0.15);
}  

.menu-link {
  position: relative;
  transition: transform 0.8s, color 0.2s;
}

.menu-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.6s;
  position: absolute;
  left: 0;
  bottom: 4px;
}

.menu-link:hover, .menu-link:focus {
  transform: scale(1.10); /* aumenta 17% */
  color: #fff;
}

.menu-link:hover::after, .menu-link:focus::after {
  width: 100%;
}

a.text-light {
    text-decoration: none !important;
}

.footer__icons {
    transition: all 0.3s ease;
}

.footer__icons:hover {
    transform: scale(1.2);
}