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

body, html {
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-size: 62.5%;
  font-family: "Helvetica", sans-serif;
}

main {
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .friend-card {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  letter-spacing: 0.2rem;
  border: 1px solid black;
  border-radius: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
main .friend-card img {
  width: 55em;
  height: 60em;
  border-radius: 2rem;
  object-fit: cover;
  object-position: center;
  border: 3px solid #FFD700;
}
main .friend-card h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
main .friend-card h2 {
  font-size: 2rem;
  color: #FF6B6B;
}
main .friend-card button {
  font-size: 1.75rem;
  background: linear-gradient(45deg, #00b09b, #96c93d);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1.25rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}
main .friend-card button:hover {
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/*# sourceMappingURL=style.css.map */
