@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
}

.photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: default;
  transition: transform 0.2s ease;
}

h1:hover {
  animation: bounce 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite alternate;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.socials a {
  text-decoration: none;
  color: #000;
  opacity: 0.3;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.socials a:hover {
  opacity: 1;
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: #000;
}
