body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgb(176, 44, 132), rgb(44, 106, 125));
  background-blend-mode: overlay;
}
h1 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin: 20px 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.image-container {
  text-align: center;
}

.image-container img {
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  height: 300px;
  width: 300px;
  background-color: lightgrey;
}

.btn {
  background-color: slateblue;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 20px 30px;
  font-size: 20px;
  font-family: cursive;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.btn :hover {
  opacity: 0.9;
}
