/* CSS para fondo animado */

html {
    height:100%;
  }
  
  body {
    margin:0;
  }
  
  .bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
  }
  
  .bg3 {
    animation-duration:5s;
  }
  
  .content {
    background-color:rgba(255,255,255,.8);
    border-radius:.25em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-50%, -50%);
  }
  
  h1 {
    font-family:monospace;
  }
  
  @keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
  }

.bodyCustom {
    /* background-color: #0c7c59; */
    /* background-image: url('../assets/img/bg8.jpg'); */
    /* background-size: auto; */
    background-position: center;
    background-attachment: fixed;
}

/* Tarjetas */
.cardCustom {
    background-color: #212529; 
    color: white;
    min-height: 16.5rem;
    max-height: 16.5rem;
}

.colCustom {
    padding-bottom: 10px;
}

.titleJupiter {
    font-weight: bold;
    font-size: 9rem;
    color: #EF0B0A;
}

.logoJupiter {
    max-height: 75rem;
    max-width: 75rem;

}

.footerCustom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    margin-top: 5rem;
}

.card-title {
    font-weight: bold;
    text-decoration: underline;
}

.modalCustom {
    background-color: #212529; 
    color: black;
}

.title-color {
    color: white;
}

.whiteFont {
    color: white;
}