body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: white;
  font-family: "Cabin Sketch", cursive;
  color: #333;
}

h1 {
  text-align: center;
  font-family: "Cabin Sketch", cursive;
  font-size: 2.5rem;
  line-height: 1.4;
}

h1 span {
  font-size: 2rem;
  color: #555;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;

  border-radius: 10px;
}

.avatar {
  max-width: 500px;
  height: 500px;
  border-radius: 8px;
}

.hint {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .avatar {
    max-width: 300px;
    margin-top: 1rem;
  }
}
