@font-face {
  font-family: "Inter";
  src: url("Inter-VariableFont_slnt,wght.ttf");
}
html {
  font-size: clamp(0.725rem, 2vw, 0.9rem);
}

.attribution {
  font-size: 1rem;
  text-align: center;
  color: white;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: hsl(0, 0%, 8%);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter";
}

.container {
  background-color: hsl(0, 0%, 12%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 10px;
  width: min(95%, 24rem);
}
.container__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container__profile-img {
  height: 5rem;
  width: auto;
  border-radius: 50%;
}
.container__profile-name {
  color: hsl(0, 0%, 100%);
  margin-bottom: 0;
  font-size: 1.3rem;
}
.container__profile-address {
  color: hsl(75, 94%, 57%);
  font-size: 0.8rem;
}
.container__profile-role {
  color: hsl(0, 0%, 100%);
  font-size: 0.8rem;
}
.container__links {
  width: 100%;
}
.container__links-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}

.container__links-list li a {
  display: block;
  text-decoration: none;
  padding: 1rem 2rem;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 20%);
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s ease;
}
.container__links-list li a:active, .container__links-list li a:focus {
  background-color: #c5f82a;
  color: #141414;
  transform: scale(1);
}
.container__links-list li a:hover {
  transform: scale(1.05);
  background-color: #c5f82a;
  color: #141414;
}/*# sourceMappingURL=style.css.map */