body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffe6f1, #ffd1e8);
  font-family: "Comic Sans MS", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

header {
  margin-top: 40px;
}

header h1 {
  color: #d63384;
  font-size: 36px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sorry-photo {
  max-width: 300px;
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

footer {
  margin-bottom: 40px;
}

footer p {
  font-size: 20px;
  color: #b0306a;
  max-width: 90%;
}