:root{
    --very-dark-blue:hsl(233, 47%, 7%);
    --dark-desaturated-blue:hsl(244, 38%, 16%);
    --violet: rgb(170, 92, 219);

    --white: hsl(0, 0%, 100%);
    --s-transparent-white: hsla(0, 0%, 100%, 0.75);
    --transparent-white: hsla(0, 0%, 100%, 0.6);

    --fontHeadings: "Lexend Deca", serif;
    --fontBody: "Inter", serif;
}

html{
    font-size: 62.5%;
    box-sizing: border-box;
}

*,*:before,*:after{
    box-sizing: border-box;
}

p{
    color: var(--transparent-white);
    line-height: 2.5rem;
}

.no-margin{
    margin: 0;
}
.no-paddding{
    padding: 0;
}

body{
    font-size: 1.6rem;
    font-family: var(--fontBody);
    background-color: var(--very-dark-blue);
}

img{
    max-width: 100%;
}

.main{
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contenedor{
    color: var(--white);
    width: 95%;
    max-width: 120rem;
    margin: 0 auto;
}

.informacion{
    text-align: center;
    background-color: var(--dark-desaturated-blue);
    padding: 2rem;
    border-radius:  0 0 1.5rem 1.5rem;
}

.informacion__titulo{
    font-size: 3.8rem;
}

.titulo__bold{
    color: var(--violet);
}

.data__info_paraph{
    text-transform: uppercase;
}

.imagen{
    position: relative;
}

.imagen img{
    width: 100%;
    height: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
}

.fondo-chispeado{
    position: absolute;
    inset: 0;
    background-color: rgba(170, 92, 219, .65);
    border-radius: 1.5rem 1.5rem 0 0;
}

/*desktop*/
@media (min-width: 768px) {
  .contenedor{
    display: flex;
    justify-content: center;
  }

  .imagen{
    flex: 0 0 40%;
  }

  .imagen img{
    border-radius: 0 1.5rem 1.5rem 0;
  }

  .fondo-chispeado{
    border-radius: 0 1.5rem 1.5rem 0;
  }

  .informacion{
    text-align: left;
    flex:  0 0 50%;
    order: -1;
    border-radius: 1.5rem 0 0 1.5rem;
    padding: 5rem;
  }

  .informacion__titulo{
    font-size: 4.5rem;
  }

  .data{
    display: flex;
    justify-content: space-between;
  }
}
