/* Reset and base styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background: url('../images/generated.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
}

#container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  max-width: 95vw;
  background: rgba(255,255,255,0.0); /* transparent, adjust if needed */
  padding: 32px 0;
  box-sizing: border-box;
  text-align: center;
}

#photo {
  display: block;
  margin: 0 auto 24px auto;
  width: 60%;
  max-width: 180px;
  border-radius: 50%;
  border: 4px solid #f1f1f1;
  background: white;
}

#name {
  color: #080808;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  font-size: 2.5em;
  font-weight: 900;
  -webkit-text-stroke: 3px #f1f1f1;
  paint-order: stroke fill;
  margin-bottom: 24px;
  display: block;
}

#links {
  margin-top: 24px;
  text-align: center;
}

a.social {
  font-size: 2.5em;
  margin: 0 20px;
  color: #080808;
  text-decoration: none;
  -webkit-text-stroke: 2px #f1f1f1;
  transition: transform .2s ease-in-out;
}

a.social:hover {
  transform: scale(1.3);
}

/* Responsive styles for mobile */
@media (max-width: 600px) {
  html, body {
    font-size: 22px;
    min-height: 100vh;
    height: 100vh;
  }
  #container {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  #photo {
    width: 60%;
    max-width: 180px;
    margin-bottom: 2rem;
  }
  #name {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  #links {
    margin-top: 2rem;
  }
  a.social {
    font-size: 2.5rem;
    margin: 0 1.2rem;
  }
}