@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.profile-card__button {
  background-color: #333333;
  height: 45px;
  padding: 12px;
  width: 100%;
  max-width: 304px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.profile-card__button:hover {
  background-color: #c4f82a;
  color: #333333;
}

.profile-card {
  background-color: #1f1f1f;
  width: 327px;
  padding: 24px;
  border-radius: 12px;
}
.profile-card__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.profile-card__avatar {
  width: 88px;
  border-radius: 50%;
}
.profile-card__user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.profile-card__name {
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
}
.profile-card__location {
  color: #c4f82a;
  font-size: 14px;
}
.profile-card__bio {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}
.profile-card__links {
  margin-top: 24px;
}
.profile-card__links-list {
  list-style-type: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-card__links-item {
  width: 100%;
}
@media (min-width: 640px) {
  .profile-card {
    width: 384px;
    padding: 40px;
  }
}

body {
  background-color: #141414;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter", sans-serif;
}

footer {
  color: white;
  margin-top: auto;
  margin-bottom: 12px;
}
footer a {
  color: #c4f82a;
}

main {
  margin-top: auto;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

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