h1,
h2,
p,
span,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  font-family: "Manrope", sans-serif;
  background-color: hsl(210, 46%, 95%);
}
img {
  width: 100%;
}
.card {
  max-width: 950px;
  margin: 200px auto 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
}

.drawers-img {
  max-width: 400px;
}

.drawers-img img {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: -2px 2px 10px 2px rgb(197, 197, 197);
}

.card-info {
  padding: 30px;
  max-width: 500px;
  background-color: white;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 2px 2px 10px 2px rgb(197, 197, 197);
}

.card-info h1 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: hsl(217, 19%, 35%);
}

.card-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: hsl(214, 17%, 51%);
}

.social-container {
  display: grid;
  grid-template-columns: auto auto 1fr;
  position: relative;
}

.social-container.hide {
  display: none;
}

.social-img {
  align-self: center;
}

.social-img img {
  border-radius: 50%;
  width: 50px;
}

.social-container h2 {
  font-size: 1rem;
  color: hsl(217, 19%, 35%);
  margin: 6px 0 0 20px;
}

.social-container span {
  font-size: 0.95rem;
  font-weight: 100;
}

.icon-share {
  width: 16px;
  height: 16px;
  background-color: hsl(210, 46%, 95%);
  padding: 8px 8px 9px 8px;
  border-radius: 50%;
  margin-top: 10px;
  margin-right: 30px;
  align-self: center;
  justify-self: end;
}

.icon-share:hover {
  cursor: pointer;
}
.icon-share img {
  width: 18px;
}

.share-container-mobile {
  display: none;
}
