@font-face {
  font-family: 'Defonte';
  src: url("fuente/DeFonte reduced Normale.otf") format('opentype');
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Defonte';
  background-color: #e4201b;
  color: white;
}

.navegacion{
    display: flex;
    justify-content: center;
    gap: 4rem;
    list-style: none;
    padding: 2rem;
}

.navegacion a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}


.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 3rem; 
    padding: 0 10%; 
    align-items: center; 
}


.bloque-izquierdo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espacio entre el texto y la imagen del alien */
}

.texto h1 {
    font-size: 3.5rem; 
    line-height: 0.85; 
    text-transform: none;
    margin-bottom: 1.5rem;
}

.texto span {
    display: inline-block;
}

.imagen-alien {
    width: 100%; 
    display: flex;
    justify-content: flex-start; 
}

.imagen-alien img {
    width: 90%; 
    height: auto;
    object-fit: contain; 
}


.bloque-derecho {
    display: flex;
    justify-content: flex-end; 
}

.bloque-derecho img {
    width: 70%; 
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem; 
}

.marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; 
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 1rem 0;
    overflow: hidden; 
    white-space: nowrap; 
    border-top: 2px solid white;
    z-index: 1000;
}

.marquee-content {
    display: inline-block;
    animation: marquee-infinito 25s linear infinite;
}

.marquee-content span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}


@keyframes marquee-infinito {
    0% {
        transform: translateX(0);
    }
    100% {
    
        transform: translateX(-50%);
    }
}
