body{
  width: 100vw; 
  
  
  
}


.fondo {
    background-color: #29507a;
}

.fondo_gris {
    background-color: gray;
}

.color {
    color: #29507a;
}

.color2 {
    color: #043263
}

.color_gris {
    color: gray;
}

.shadow {
    text-shadow: 1px 1px 1px gray;
}

.animacion:hover {
    background: #29507a;
    color: #043263;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.table-head {
    background: #043263;
    color: #f2f2f2;
}

.html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.contenedor {
    text-align: center;
}


.rotar {
    margin-top: 120px;
    box-shadow: 0px 0px 0px 0px #29507a;
    -webkit-box-shadow: 0px 0px 0px 0px #29507a;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}

.menu {
    display: flex ;
    justify-content: end !important;
  }
  
  .menu li {
    margin-right: 20px;
  }
  
  .menu a {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .menu a span {
    transition: transform 0.2s ease-out;
  }
  
  .menu a span:first-child {
    display: inline-block;
    padding: 10px;
  }
  
  .menu a span:last-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
  }
  
  .menu i {
    font-size: 30px;
  }
  
  .menu a:hover span:first-child {
    transform: translateY(100%);
  }
  
  .menu a:hover span:last-child,
  .menu[data-animation] a:hover span:last-child {
    transform: none;
  }
  
  
  .menu[data-animation="to-top"] a span:last-child {
    transform: translateY(100%);
  }
  
  .menu[data-animation="to-top"] a:hover span:first-child {
    transform: translateY(-100%);
  }
  
  .menu[data-animation="to-right"] a span:last-child {
    transform: translateX(-100%);
  }
  
  .menu[data-animation="to-right"] a:hover span:first-child {
    transform: translateX(100%);
  }
  
  .menu[data-animation="to-left"] a span:last-child {
    transform: translateX(100%);
  }
  
  .menu[data-animation="to-left"] a:hover span:first-child {
    transform: translateX(-100%);
  }

