h1 {
  font-family: "Arial", sans-serif;
  width: 100%;
  text-align: center;
}
body {
  font-family: "Arial", sans-serif;
}
p {
  position: relative;
  top: 30px;
  left: 10px;
  width: 40%;
  font-size: 30px;
  z-index: 2;
}
img {
  position: absolute;
  top: 300px;
  left: 650px;
  width: 250px;
  height: 250px;
}
div {
  position: absolute;
  top: 50px;
  left: 10px;
  width: 450px;
  height: 550px;
  border: 3px solid black;
  border-radius: 20px;
  background-color: white;
  transition: transform 0.4s ease-in-out;
  z-index: 1;
}
div:hover {
  transform: translateY(12px);
}