body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at center, #e0e0e0, #b0b0b0);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
}

.portrait {
  width: 250px;
  height: auto;
  border-radius: 50%;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.portrait:hover {
  transform: scale(1.05);
}
