*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.contenedor{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenedor img{
    width: 90%;
    max-width: 1000px;
}

p{
    text-align: center;
    font-style: italic;
}

i{
    color: red;
}
.autor{
    color: blue;
    font-weight: bold;
}

@media (max-width: 700px) {
    .contenedor{
        height: 90vh;
    }
}