@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body{
    background-color: #f0f8ff;
}

.tarjeta{
    background-color: pink;
    width: 500px;
    margin: 10px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgb(97, 37, 37);
}

p{
    color: black;
}

img{
    border-radius: 90px;
    display: block;
    margin: auto;
}

img:hover{
    transform: scale(1.1); /*escala el tamaño*/
    cursor: pointer;
}

.lora {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

hr{
    border: none;
    height: 1px;
    background-color: black;
    margin: 20px 0;
}
h2{
    color: rgb(156, 59, 156);
}