* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "inter";
  src: url("fonts/Inter-VariableFont_slnt\,wght.ttf");
}
@font-face {
  font-family: "interBold";
  src: url("fonts/static/Inter-Bold.ttf");
}
@font-face {
  font-family: "interSemibold";
  src: url("fonts/static/Inter-SemiBold.ttf");
}
@font-face {
  font-family: "interRegular";
  src: url("fonts/static/Inter-Regular.ttf");
}
body {
  background-color: hsl(0, 0%, 8%);
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "inter";
  font-size: 10px;
  width: 100%;
}
.profile-box {
  background-color: red;
  width: 310px;
  max-width: 90%;
  background-color: hsl(0, 0%, 12%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  border-radius: 9px;
}
.profile-box header img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: block;
  margin: auto;
  margin-top: 2rem;
}

.profile-box main h1 {
  font-family: "interSemibold";
  font-size: 17px;
  margin-bottom: 7px;
}
.profile-box main :nth-child(2) {
  color: hsl(75, 94%, 57%);
  font-family: "interBold";
}
.profile-box main :nth-child(3) {
  margin-top: 20px;
  color: hsl(0, 2%, 80%);
}
.profile-box .grid-list {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(150px, 0.5fr)); */
  gap: 18px;
  width: 80%;
  margin: auto;
}

.profile-box .grid-list ul {
  list-style: none;
  padding-bottom: 20px;
}
.item {
  background-color: hsl(0, 0%, 20%);
  border-radius: 5px;
}
.item:hover {
  background-color: hsl(75, 94%, 57%);
  color: black;
}
.item a:hover {
  color: hsl(0, 0%, 12%);
}
.item a {
  display: block;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  width: 100%;
  height: 100%;
  font-family: "interBold";
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  padding: 10px;
}
@media (max-width: 375px) {
  .profile-box {
    min-width: 90%;
  }
  .profile-box header img {
    width: 70px;
    height: 70px;
  }
  .profile-box main h1 {
    font-size: 20px;
  }
  .profile-box main p{
    font-size: 12px;
  }
  .profile-box .grid-list {
    width: 85%;
  }
  .profile-box .grid-list ul{
    padding-bottom: 6px;
  }
  .profile-box .grid-list ul li a{
    padding: 12px;
  }
  .profile-box .grid-list .item {
    font-size: 12px;
    margin-bottom: 13px;
  }
}
