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

html {
  font-size: 13px;
  font-family: "Manrope", sans-serif;
}

body {
  background-color: hsl(210, 46%, 95%);
  line-height: 1.6;
  padding: 10rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3 {
  color: hsl(217, 19%, 35%);
}

/*h1{
    font-size: $fs-xxl;
    line-height: 1.2;
}*/
/*h2{
    font-size: $fs-xl;
    line-height: 1.3;
}*/
h1 {
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  line-height: 1.3;
}

h2 {
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
  line-height: 1.4;
}

p {
  color: hsl(212, 23%, 69%);
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
}

main {
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60rem;
  margin: 0 auto;
  border-radius: clamp(1rem, 0.8rem + 1vw, 2rem);
}
main .image {
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(1rem, 0.8rem + 1vw, 2rem) 0 0 clamp(1rem, 0.8rem + 1vw, 2rem);
}
main article {
  width: 60%;
  padding: clamp(1rem, 0.8rem + 1vw, 2rem);
  position: relative;
}
main article h1 {
  margin-bottom: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
}
main article .page-description {
  margin-bottom: clamp(1rem, 0.8rem + 1vw, 2rem);
}

.page-profile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.page-profile-user {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(0.25rem, 0.2rem + 0.4vw, 0.5rem);
}
.page-profile-user img {
  border-radius: 50%;
  width: clamp(2rem, 1.5rem + 2vw, 4rem);
  height: clamp(2rem, 1.5rem + 2vw, 4rem);
}
.page-profile-share {
  background-color: hsl(210, 46%, 95%);
  height: clamp(2rem, 1.5rem + 2vw, 4rem);
  color: hsl(214, 17%, 51%);
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
  width: clamp(2rem, 1.5rem + 2vw, 4rem);
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.profile-display {
  position: absolute;
  padding: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
  box-shadow: 0rem 0.3rem 0.7rem hsl(212, 23%, 69%);
  border-radius: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
  background-color: hsl(217, 19%, 35%);
  bottom: calc(clamp(4rem, 3rem + 3vw, 6rem) + clamp(1rem, 0.8rem + 1vw, 2rem));
  right: -9%;
}
.profile-display::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: hsl(217, 19%, 35%) transparent transparent transparent;
}
.profile-display .share-text {
  color: hsl(212, 23%, 69%);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: clamp(0.8125rem, 0.75rem + 0.5vw, 0.9375rem);
}
.profile-display ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
}
.profile-display ul li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
}

.share-info {
  display: none;
}

.active {
  background-color: hsl(214, 17%, 51%);
  color: hsl(0, 0%, 100%);
}

@media (max-width: 800px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
  }
  main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: min(20rem, 90vw);
  }
  main .image {
    width: 100%;
    height: 40%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: clamp(1rem, 0.8rem + 1vw, 2rem) clamp(1rem, 0.8rem + 1vw, 2rem) 0 0;
  }
  main article {
    width: 100%;
    height: 60%;
    padding: 0;
  }
  main article .page-title {
    padding: clamp(1rem, 0.8rem + 1vw, 2rem) clamp(1rem, 0.8rem + 1vw, 2rem) 0 clamp(1rem, 0.8rem + 1vw, 2rem);
  }
  main article .page-description {
    padding: 0 clamp(1rem, 0.8rem + 1vw, 2rem);
  }
  .profile-display {
    width: 100%;
    bottom: 0;
    left: 0;
    right: calc(0 - clamp(1rem, 0.8rem + 1vw, 2rem));
    border-radius: 0 0 clamp(1rem, 0.8rem + 1vw, 2rem) clamp(1rem, 0.8rem + 1vw, 2rem);
    padding: calc(clamp(2rem, 1.5rem + 2vw, 4rem) - clamp(0.5rem, 0.4rem + 0.6vw, 1rem));
    box-shadow: none;
    margin-top: clamp(1rem, 0.8rem + 1vw, 2rem);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(0.5rem, 0.4rem + 0.6vw, 1rem);
  }
  .profile-display::after {
    display: none;
  }
  .page-profile {
    position: relative;
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
  }
  .page-profile-share {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    right: clamp(1rem, 0.8rem + 1vw, 2rem);
  }
}/*# sourceMappingURL=main.css.map */