:root {
  --color-green: hsl(75, 94%, 57%);
  --color-white: hsl(0, 0%, 100%);
  --color-grey-700: hsl(0, 0%, 20%);
  --color-grey-800: hsl(0, 0%, 12%);
  --color-grey-900: hsl(0, 0%, 8%);
}
html {
  font-size: 13.8px
}
body {
  background-color: var(--color-grey-900);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "Inter", sans-serif;
}
#info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

#buttons {
  display: grid;
  justify-content: center;
  gap: 0.5rem;
  width: 90%;
  margin: 0 2rem 0 2rem;
}
#profile {
  background-color: var(--color-grey-800);
  color: var(--color-white);
  border-radius: 0.5rem;
  padding: 2rem 2.25rem;
  margin: 0;
  width: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#name {
  font-weight: 700;
  margin: 0.5rem 0;
}
#location {
  font-weight: 600;
  color: var(--color-green);
  margin: 0.125rem 0 1.25rem;
  font-size: 0.9rem;
}
#bio {
  font-weight: 400;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}
#avatar {
  border-radius: 50%;
  margin: 1rem 0 1rem 0;
  width: 35%;
  height: 35%;
}
button {
  background-color: var(--color-grey-700);
  color: var(--color-white);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 6rem; /* Adjust padding */
  width: 100%; /* Ensure full width */
  max-width: 100%; /* Ensure it doesn't exceed container width */
  font-weight: 600;
  font-size: 1rem; /* Adjust font size */
  white-space: nowrap; /* Prevent text wrapping */
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
button:hover {
  background-color: var(--color-green);
  color: var(--color-grey-800);
  cursor: pointer;
}