*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  font-size: 62.5%;
}

.container {
  max-width: 111rem;
  margin: auto;
}

.main {
  background-color: #141414;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link {
  background-color: #1f1f1f;
  text-align: center;
  padding: 4rem;
  border-radius: 1.2rem;
  max-width: 38.4rem;
  width: 100%;
  margin: auto;
}

.social-link img {
  max-width: 100%;
  width: 8.8rem;
  margin-bottom: 2.4rem;
  border-radius: 50%;
}

.heading-name {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 150%;
  margin-bottom: 0.4rem;
  color: #fff;
}

.location-text {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 150%;
  margin-bottom: 2.4rem;
  color: #c4f82a;
}

.job-description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 2.4rem;
  color: #fff;
}

.links-list {
  list-style: none;
}

.links-list li {
  background-color: #333333;
  display: block;
  margin-bottom: 1.6rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

li:hover {
  background-color: #c4f82a;
}

.link {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  padding: 1.2rem 0;
}

.link:hover {
  color: #333;
}
