html, body{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #456dff url('./Fondo.jpg') center center no-repeat;
    background-size: cover;
}

.content{
    padding: 20px;
}

img{
    max-width: 100%;
    height: auto;
}

.texto {
    color: #FFF;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    line-height: 1;
}

@media screen and (min-width: 550px) {
    .texto {
        font-size: 46px;
    }
  }