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

body{
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg,#ff9a9e,#fad0c4,#fad0c4);
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:30px;
}

.container{
  width:100%;
  display:flex;
  justify-content:center;
}

.card{
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius:25px;
  padding:40px;
  max-width:850px;
  text-align:center;
  color:white;
  box-shadow:0 0 30px rgba(0,0,0,0.3);
}

h1{
  font-size:60px;
  margin-bottom:20px;
}

img{
  width:340px;
  border-radius:20px;
  margin:25px 0;
  box-shadow:0 0 25px rgba(0,0,0,0.4);
  transition:0.4s;
}

img:hover{
  transform:scale(1.03);
}

p{
  font-size:23px;
  line-height:1.8;
}

.frase{
  margin-top:30px;
  font-size:28px;
  font-style:italic;
  color:#fff8dc;
}

.heart{
  font-size:50px;
  animation:pulse 1s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.2);}
  100%{transform:scale(1);}
}