*:not(a) {
  font-family: inter;
  color: white;
}

.links a {
  font-family: inter;
  color: white;
}

body {
  background-color: #141414;
}

.root-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 98vh;
}

.profile-card {
  display: flex;
  justify-content: center;
  width: 327px;
  height: 579px;
  border-radius: 12px;
  background-color: #1f1f1f;
  /* border: 2px solid yellow; */
}

.inner-profile-card {
  width: 279px;
  height: 100%;
  /* border: 2px solid cyan; */
}

.img-container {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  /* border: 2px solid cyan; */
}

img {
  border-radius: 50%;
  width: 88px;
  height: 88px;
}

.text {
  text-align: center;
}

h1 {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0px;
  margin-bottom: 5px;
}

p.city,
li {
  font-size: 14px;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 0px;
  margin-top: 0;
}

p.city {
  color: #c4f82a;
}

p.desc {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
  margin: 24px 0;
}

.links {
  list-style: none;
  padding: 0;
  width: 279px;
  height: 289px;
  /* border: 2px solid cyan; */
}

.links li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 279px;
  height: 45px;
  margin-bottom: 16px;
  background-color: #333333;
  border-radius: 10px;
  /* border: 2px solid cyan; */
}

.links li:hover {
  background-color: #c4f82a;
  transition: background-color 0.4s ease-in-out;
}

.links a:hover {
  color: #1f1f1f;
}

.links a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid red; */
}

@media (min-width: 375px) {
  .profile-card {
    width: 384px;
    height: 611px;
  }

  .inner-profile-card {
    width: 304px;
  }

  .links li {
    width: 304px;
  }
}
