@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --Very-Dark-Grayish-Blue: hsl(217, 19%, 35%);
  --Desaturated-Dark-Blue: hsl(214, 17%, 51%);
  --Grayish-Blue: hsl(212, 23%, 69%);
  --Light-Grayish-Blue: hsl(210, 46%, 95%);
}
.handle {
  display: flex;
}
.color-container {
  background-color: white;
}
body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--Light-Grayish-Blue);
  min-height: 100vh;
  padding: 1rem 0;
  color: var(--Very-Dark-Grayish-Blue);
}
main {
  background-color: white;
  width: 800px;
  display: flex;
  flex-direction: row;
  border-radius: 0.6rem;
}
.image-box {
  width: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 0.6rem 0 0 0.6rem;
}
.main-image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.right-box {
  width: 550px;
  padding: 1.8rem;
  display: flex;
  gap: 1.8rem;
  flex-direction: column;
}
.right-box .text-box h3 {
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  margin: 0 0 1.3rem;
  color: var(--Very-Dark-Grayish-Blue);
}
.right-box .text-box p {
  font-size: clamp(1rem, 5vw, 1.2rem);
  opacity: 0.5;
}
.container-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.container-info .personal-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.container-info .personal-info .text-personal p {
  color: var(--Very-Dark-Grayish-Blue);
}
.container-info .personal-info .text-personal span {
  opacity: 0.5;
}
.container-info .personal-info img {
  width: 45px;
  height: 45px;
  clip-path: circle(50%);
}
.container-info .ballon {
  display: none;
  position: absolute;
  top: -75px;
  right: -96px;
}
.container-info ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 1rem;
  background-color: var(--Very-Dark-Grayish-Blue);
  border-radius: 0.7rem;
  justify-content: space-evenly;
  width: 225px;
}
.container-info ul li {
  color: white;
  font-size: 1.5rem;
}
.container-info ul .span {
  opacity: 0.5;
  letter-spacing: 0.3rem;
  font-size: 0.8rem;
}
.container-info ul::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -33px;
  border-style: solid;
  border-width: 17px;
  border-color: var(--Very-Dark-Grayish-Blue) transparent transparent
    transparent;
}
.container-info .icon-share {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background-color: var(--Light-Grayish-Blue);
  clip-path: circle(50%);
  cursor: pointer;
}
.container-info .icon-share .icon-share-js {
  background-color: var(--Very-Dark-Grayish-Blue);
}
/* .container-info .icon-share .share-icon  {
    
} */
.container-info .icon-share .share-js {
  color: var(--Light-Grayish-Blue);
}
.attribution {
  position: absolute;
  bottom: 25px;
  left: 50%;
  padding: 1rem;
  transform: translateX(-50%);
  background-color: hsl(173.02deg 17.55% 51.96%);;
  color: white;
  border-radius: 0.8rem;
  font-size: 0.8rem;
  font-weight: bold;
}
