
/* Animacion de titulo */
.marquee { 
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 5px;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 8s linear infinite;
  font-size: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.titulo {
  width: 500px;
  height: auto;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  background-image: url(https://frutigeraeroarchive.org/images/wallpapers/miscellaneous/miscellaneous_187.jpg);
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40px;
  font-family: "Comic Sans MS";
  text-decoration: none;
}

/* Caja principal */
.container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: center;

  width: 80%;
  max-width: 800px;
}

/* Cajas internas */
.box {
  padding: 20px;
  background: white;
  border: 2px solid rgba(3, 4, 94,1);
}

/* Caja del título */
.title-box {
  text-align: center;
}

/* Caja del contenido */
.content-box {
  line-height: 1.6;
}


/*Texto saltarin*/

.saltarin span {
  display: inline-block;
  animation: wave 1.5s ease-in-out infinite;
  text-align: center
}

.saltarin span:nth-child(odd) {
  animation-delay: 0.2s;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  
}

/*Columnas*/

.columnas {
  display: flex;
  gap: 20px; 
}

.col-izq {
border: rgb(3, 4, 94) solid 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  flex: 1;
}

.col-centro p {
  flex: 3;
  margin: 0.2em 0;
}

.col-der {
  margin: 0px;
  border: rgb(3, 4, 94) solid 2px;
  flex: 1; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/*Navegacion*/ 

.navegacion-titulo { 
  color: white;
filter: drop-shadow(1px 0 0 black) drop-shadow(0 1px 0 black) drop-shadow(-1px 0 0 black) drop-shadow(0 -1px 0 black) 
}

.navegacion-boton {
  background: linear-gradient(90deg, rgba(0, 119, 182,1) 0%, rgba(144, 224, 239,1) 100%);
    background-color: rgba(0, 0, 0, 0);
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: linear-gradient(90deg, rgb(0, 119, 182) 0%, rgb(144, 224, 239) 100%);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
  color: var(--dkest-color);
  border-top: 2px solid rgb(3, 4, 94);
  border-bottom: 2px solid var(--dk-color);  
  font-weight: bold;
  text-align: center;
  margin: 0;
  cursor: pointer;
  transition: 0.2s;
}

.navegacion-boton img {
  width: 20px;
  height: auto;
}

.navegacion-boton span {
  filter: drop-shadow(1px 0 0 black) drop-shadow(0 1px 0 black) drop-shadow(-1px 0 0 black) drop-shadow(0 -1px 0 black) 
}

.navegacion-ultimo {
  background: linear-gradient(90deg, rgba(0, 119, 182,1) 0%, rgba(144, 224, 239,1) 100%);
    background-color: rgba(0, 0, 0, 0);
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: linear-gradient(90deg, rgb(0, 119, 182) 0%, rgb(144, 224, 239) 100%);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
  color: var(--dkest-color);
  border-top: 2px solid rgb(3, 4, 94);
  border-bottom: 2px solid rgb(3, 4, 94);  
  font-weight: bold;
  text-align: center;
  margin: 0;
  cursor: pointer;
  transition: 0.2s;
}


.navegacion-ultimo img {
  width: 20px;
  height: auto;
}

.navegacion-ultimo span {
  filter: drop-shadow(1px 0 0 black) drop-shadow(0 1px 0 black) drop-shadow(-1px 0 0 black) drop-shadow(0 -1px 0 black) 
}

.shimejiuno {
  width: 30px;
  height:auto;
}

.shimejidos {
  width: 300px;
  height: auto;
}


.blinkie {
  width: 200px;
  height:auto;
}

.binki {
font-size: 0;  
}

.stamp {
  width: 100px;
  height:auto;
}

.esquina {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;   /* ajusta el tamaño */
  height: auto;
    z-index: 1000; 
}