@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{

    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body
{

top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 100vh;

}
.box
{
    left: 35%;
    position: absolute;
    width: 400px;
    height: 270px;
    flex: 1 1 200px; /* Crece y se encoge según el espacio disponible, con un tamaño mínimo de 200px */
    margin: 1px;
    justify-content: center;
    align-items: center;
}
.box .item 
  {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--img);
    background-size: cover;
    display: flex;
    transition: 1s;
    box-shadow: 0 0 50px rgba(0,0,0,0.25);
    cursor: pointer;
}
.box .item:nth-child(n-3)
{
    transform: translate3d(0,-100vw,0);
}
.box .item:nth-child(4)
{
    transform: translate3d(-100px,-100px,0) rotate(5deg);
}
.box .item:nth-child(5)
{
    transform: translate3d(-50px,-50px,0) rotate(-15deg);
}
.box .item:nth-child(6)
{
    transform: translate3d(0px,0px,0) rotate(15deg);
}
.box .item:nth-child(7)
{
    transform: translate3d(50px,50px,0) rotate(-5deg);
}
.box .item:nth-child(n+8)
{
    transform: translate3d(0,200vw,0);
}
.box .item::before
{
    content: attr(data-text);
    position: absolute;
    color: #ffffff;
    font-size: 2em;
    transition: 1s;
    font-weight: 800;
    display: flex;
    left: 50%;
    white-space: nowrap;
    text-transform: uppercase;
    -webkit-text-stroke:  2px #000;
    text-shadow: 0 5px 15px rgba(0,0,0,0.75);
    transform: translate3d(-50vw,50vh,0) rotate(0deg);
    opacity: 0;
}
.box .item:nth-child(7)::before
{
transform: translate3d(-150px,250px,0) rotate(5deg);
opacity: 1;
}
.Boton
{
    position: absolute;
    width: 100px;
    height: 20px;
    flex: 1 1 200px; /* Crece y se encoge según el espacio disponible, con un tamaño mínimo de 200px */
    margin: 10px;
    justify-content: center;
    align-items: center;
    left: 70%;  
    top:60%;
}
.mi-boton {
    background-color: #0E2044; /* Color de fondo */
    border: none; /* Sin borde */
    color: white; /* Color del texto */
    text-align: center; /* Alineación del texto */
    text-decoration: none; /* Sin subrayado */
    display: inline-block; /* Mostrar en línea */
    font-size: 15px; /* Tamaño de la fuente */
    margin: 4px 1px; /* Margen */
    cursor: pointer; /* Cambiar cursor al pasar el ratón */
    border-radius: 10px; /* Bordes redondeados */
}

.mi-boton:hover {
    background-color: #65C9CB; /* Color de fondo al pasar el ratón */
}
ion-icon {
    font-size: 34px;
  }
  @media (max-width: 400px) {
    .box {
        width: 100%; /* Ancho completo en móviles */
        padding: 1em;
        left: 0;
        position: absolute;
        width: 296px;
        height: 200px;
    }
}
@media (max-width: 400px) {
    .box .item {
        width: 100%; /* Ancho completo en móviles */
        padding: 1em;
        left: 0;
        position: absolute;
        width: 296px;
        height: 200px;
    }
}
.Fondotxt
{
    position: absolute;
    color: #080257;
    font-size: 2em;
    transition: 1s;
    font-weight: 800;
    display: flex;
    left: 0;
    white-space: nowrap;
    text-transform: uppercase;
    -webkit-text-stroke:  2px #000;
    text-shadow: 0 5px 15px rgba(0,0,0,0.75);
    transform: translate3d(-50vw,50vh,0) rotate(0deg);
    opacity: 0;
}
