@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
:root {
  --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-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  background-color: var(--grey-900);
  color: var(--white);
  height: 100vh;
}

h2 {
  font-family: 'Inter', sans-serif;
}

.wrapper {
  width: calc(100% - 3rem);
  margin-inline: auto;
}

.profile__wrapper {
  display: grid;
  width: 320px;
  height: auto;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--grey-800);
}

.profile__image {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.profile__name {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.profile__location {
  font-size: 14px;
  color: var(--green);
  text-align: center;
  margin-bottom: 24px;
}
.profile__description {
  font-size: 14px;
  text-align: center;
  margin-bottom: 24px;
}
.profile__social-links {
  display: grid;
  gap: 16px;
}
.profile__social-link {
  display: block;
  padding: 12px 0;
  background-color: var(--grey-700);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.profile__social-link:hover,
.profile__social-link:focus,
.profile__social-link:active {
  cursor: pointer;
  background-color: var(--green);
  color: var(--grey-900);
}

@media (min-width: 768px) {
  .profile__wrapper {
    width: 384px;
    padding: 40px;
  }

  .profile__image {
    width: 104px;
    height: 104px;
    margin-bottom: 32px;
  }

  .profile__name {
    font-size: 32px;
  }

  .profile__location,
  .profile__description {
    font-size: 16px;
  }
}
