@font-face {
  font-family: "Inter";
  src: url(/assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Young+Serif&display=swap");
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
/* Variables */
:root {
  /* Colors */
  --gray-80: #333333ff;
  --light-gray: #919191ff;
  --white: white;
  --light-green: #c0db62ff;
  --gardern-green: #c4f82aff;
  --black-light: #1f1f1fff;
  --black: #141414ff;
  /* Fonts */
  --primary-font: "Inter", sans-serif;
  /* Font Sizes */
  --ft-sz-400: 400;
  --ft-sz-600: 600;
  --ft-sz--700: 700;
}
body {
  font-size: 14px;
  font-family: var(--primary-font);
  color: white;
  background-color: var(--black);
}
.wrapper {
  background-color: var(--black);
  max-width: 100%;
  display: grid;
  place-items: center;
  padding: 100px;
}
.profile_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 18rem;
  background-color: var(--black-light);
  padding: 25px;
  border-radius: 15px;
}
.profile-photo {
  width: 75px;
  border-radius: 50%;
}
.profile_container {
  width: 18rem;
  text-align: center;
}
/* Profile Information Section */
.name {
  font-size: 2rem;
  font-weight: var(--ft-sz-600);
  line-height: 0;
}
.work-position {
  font-weight: var(--ft-sz-600);
  color: var(--light-green);
  line-height: 0;
  margin-bottom: 30px;
}
.email {
  font-size: 0.8rem;
  font-weight: var(--ft-sz-400);
  margin-bottom: 25px;
}
.social_media div {
  display: grid;
  place-items: center;
  width: 100%;
  height: 40px;
  background-color: var(--gray-80);
  margin-bottom: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.social_media a {
  text-decoration: none;
  color: white;
  font-weight: var(--ft-sz-600);
  transition: 0.2s ease;
}
.social_media div:hover {
  background-color: var(--gardern-green);
  color: var(--black);
}
.social_media div:hover a {
  color: var(--black);
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 60px 30px;
  }

  .profile_wrapper,
  .profile_container {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .wrapper {
    padding: 40px 20px;
  }

  .profile_wrapper,
  .profile_container {
    width: 100%;
    padding: 20px;
  }

  .name {
    font-size: 1.5rem;
  }

  .work-position {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .email {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }

  .social_media div {
    height: 45px;
    margin-bottom: 12px;
  }

  .social_media a {
    font-size: 0.85rem;
  }
}
