:root {
  --green: hsl(75, 94%, 57%);
  --grey700: hsl(0, 0%, 20%);
  --grey800: hsl(0, 0%, 12%);
  --grey900: hsl(0, 0%, 8%);
}
@font-face {
    font-family: Inter;
    src: url('assets/fonts/static/Inter-Regular.ttf');
}
@font-face {
  font-family: Inter;
  font-weight: 600;
  src: url('assets/fonts/static/Inter-SemiBold.ttf');
}
@font-face {
  font-family: Inter;
  font-weight: 700;
  src: url('assets/fonts/static/Inter-Bold.ttf');
}
body {
  font-size: 0.875rem;
  font-family: Inter;
  background-color: var(--grey900);
  color: white;
}
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.profile-card {
  display: inline-block;
  width: 24.0625rem;
  height: 36.5rem;
  border-radius: 1rem;
  background-color: var(--grey800);
  text-align: center;
}
@media (max-width: 26rem) {
  .profile-card {
    max-width: calc(100% - 2rem);
  }
  .profile-button {
    max-width: calc(100% - 2rem);
  }
}
.profile-card > * {
  margin-inline: 1rem;
}
.profile-card > img {
  border-radius: 50%;
  margin-top: 2.5rem;
}
.profile-card > h1 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
#profile-location {
  margin-top: 0;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.profile-card > q {
  display: inline-block;
  quotes: '"' '"';
  width: calc(100% - 2rem);
}
.profile-button {
  display: inline-block;
  width: 18.75rem;
  height: 2.75rem;
  box-sizing: border-box;
  margin-top: 1rem;
  padding: 1rem 0;
  border-radius: 0.625rem;
  background-color: var(--grey700);
  text-decoration: none;
  color: white;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: top;
  transition: 0.3s;
}
q + .profile-button {
  margin-top: 1.5rem;
}
.profile-button:hover {
  background-color: var(--green);
  color: var(--grey900);
}
