.mainHero {
    background-color: var(--header-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;

}
.mainHero p, .mainHero h1{
    padding: 0 10%;
}
.mainHero h1 {
    position: relative;
}
.deComics {
    position: absolute;
    display: flex;
    bottom: -12%;

    left: 44%;
    width: 300px;
}
.bienvenidosA {
    position: absolute;
    display: flex;
    width: 300px;
    left: 4%;
    top: -21%;
}
.inner {
    padding: 2%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
.inner img {
    height: 350px;
}
.textInner {
    justify-content: center;
    width: 50%;
}
.textInner img {
    height: auto;
}

.comicDisplayer {
    display: flex;
    flex-direction: row;
    padding: 2%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    background-color: var(--sobre-color);
}

.comicVin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
    height: 250px;
    background-color: var(--header-color);
    margin: 30px;
    transition: all 0.5s ease-in-out;
    border-radius: 25px;
    justify-content: space-around;
}
.comicVin:hover {
    scale: 1.2;
}
.comicVinImg {
    height: 175px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    border-radius: 25px 25px 0 0;
}
.comicVinLink {
    display: flex;
    font-size: 1.3rem;
    height: 75px;
    padding: 0;
    align-items: center;
    margin: 0;
}
.todosTitulo {
    text-align: center;
  background-color: var(--sobre-color);
  margin: 0;
  padding: 60px;
    padding-bottom: 60px;
  padding-bottom: 30px;
}
.nuevoComic {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-color);
    flex-direction: column;
}
.nuevoTitulo {
    margin-top: 20px;
  margin-bottom: 50px;
}

.nuevo:hover {
    scale: 1.05;
}

.nuevoFlotante {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('/assets/img/ufos/Nuevo_ufo.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    translate: -50% -70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button {
    position: absolute;
    background-image: url("/assets/img/botones/Boton_Alargado_3.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    justify-content: center;
    text-align: center;
    top: 100%;
    left: 50%;
    translate: -50% -70%;
    padding: 30px;
}
.botonera {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 150px;
    text-align: center;
}
.renav {
    position: relative;
    background-image: url('/assets/img/botones/Boton_Alargado_4.webp');
}
.flotImg {
    height: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 75% -60%;
}

.reinav {
    justify-content: space-evenly;
    width: 90%;
    padding-right: 10%;
    background-color: var(--header-color);

}
.botonera .button {
    top: auto;
  left: auto;
  translate: 0;
}
@media (max-width: 860px) {
    .reinav {
        flex-direction: column;
        height: auto;
        padding: 10% 20% 10% 0;
    }
}

@media (max-width: 765px) {
    .mainHero {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }
    .mainHero h1 {
        font-size: 1.5rem;
        margin: 0;
    }
    .inner {
        width: 250px;
        padding-bottom: 30px;
    }
    .textInner {
        width: auto;
        padding: 0;
    }
    .inner img {
        height: 250px;
    }
    .textInner img {
        scale: 1;
        margin: 0;
        height: auto;
    }
    .deComics {
        bottom: 0%;
    }
    .botonera {
        flex-direction: column;
        height: auto;
        width: auto;
    }
    .reinav {
        width: 90%;
    }
}