* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100vw;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fceabb;
  overflow: hidden;
  position: relative;
}

.wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

h1 {
  font-size: 4rem;
  color: #222;
  z-index: 2;
  position: relative;
}

/* Shared styles for images */
.photo {
  position: absolute;
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

/* Hover effect */
.photo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Inset positioning (2-3rem = ~32-48px) */
.top-left {
  top: 3rem;
  left: 3rem;
}

.top-right {
  top: 3rem;
  right: 3rem;
}

.bottom-left {
  bottom: 3rem;
  left: 3rem;
}

.bottom-right {
  bottom: 3rem;
  right: 3rem;
}
