body {
  font-family: 'Comic Sans MS', sans-serif;
  background: linear-gradient(45deg, #ffb6c1, #ffe680);
  color: #222;
  text-align: center;
  margin: 0;
  padding: 20px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.shake {
  animation: shake 0.5s infinite alternate;
}

@keyframes shake {
  from { transform: rotate(-2deg); }
  to { transform: rotate(2deg); }
}

.buttons .btn, .btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #ff4d4d;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px #b30000;
  transition: transform 0.1s;
}

.btn:hover {
  transform: scale(1.1);
  background: #ff1a1a;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.photo {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  width: 250px;
}

.photo img {
  width: 100%;
  height: auto;
}

.caption {
  padding: 10px;
  font-size: 14px;
  color: #333;
}
