body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #ffecd2 0%, #fcb69f 100%);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  backdrop-filter: blur(3px);
}

.container {
  background: #ffffff;
  color: #333;
  padding: 2rem 3rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rabbit-img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

a {
  color: #c25b28;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.contact-block {
  margin-top: 1.5rem;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.icon {
  width: 32px;
  height: 32px;
  fill: #555;
  transition: fill 0.3s ease, transform 0.2s ease;
}

.icon:hover {
  fill: #c25b28;
  transform: scale(1.15);
}
