.text-white, h1,h2,h3{
    color: #fff !important;
     animation: apararecer 1s ease-in-out;
  }
  @keyframes apararecer{
    0%{
        opacity: 0;
        transform: scale(0);
    }
    50%{
        transform: scale(2);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
  }
  #animaciones-global{
    animation: aparecerdos 3s ease;
  }
  @keyframes aparecerdos {
    0%{
        opacity: 0;
        transform: translateY(200px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
  }
  body{
    overflow-x:hidden;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    box-shadow: 0 0 10px #f9f9f9;
    padding: 5px;
  }
  .dropdown-item {
    display: block;
    position:relative;
    width: 90%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: white;
    text-align: inherit;
    white-space: nowrap;
    background-color:rgb(25, 39, 95);
    border-radius: 5px;
    left: 8px;
    margin: 2px 0;
    font-size: 17px;
  }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
    box-shadow: 0 0 3px black;
    transition: 0.3s ease;
    
  }