@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-VariableFont_slnt\,wght.ttf")
    format("truetype");
  font-weight: 100 900;
}

:root {
  --primary-font: "Inter", sans-serif;
  --green: hsl(75, 94%, 57%);
  --white: hsl(0, 0%, 100%);
  --grey-700: hsl(0, 0%, 20%);
  --grey-800: hsl(0, 0%, 12%);
  --grey-900: hsl(0, 0%, 8%);
  --font-weight-regular: 400;
  --font-weight-bold: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  background-color: var(--grey-900);
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  color: var(--white);
  line-height: 150%;
  letter-spacing: 0px;
}

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-heading {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.container {
  height: 100vh;
  display: grid;
  padding: 2em;
}

.container .social-profile-card {
  margin: auto;
  width: 100%;
  max-width: 384px;
  background-color: var(--grey-800);
  height: auto;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.container .social-profile-card .avatar {
  border-radius: 100px;
  object-fit: contain;
}

.container .social-profile-card .location {
  color: var(--green);
}

.container .social-profile-card .social-links {
  width: 100%;
  list-style: none;
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
}

.container .social-profile-card li a {
  display: block;
  background-color: var(--grey-700);
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.container .social-profile-card li:hover a:hover {
  background-color: var(--green);
  color: var(--grey-900);
}

.container .social-profile-card li:focus a:focus {
  cursor: pointer;
}
