*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  outline: none !important;
}

/* Remove blue highlight when click share button */

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* End  */

body {
  font-family: "Manrope";
  font-size: 13px;
}

.container {
  height: 100vh;
  display: flex;
  background: hsl(210, 46%, 95%);
}

.card-container {
  min-height: 50vh;
  width: 90%;
  margin: auto;
  border-radius: 10px;
  background: white;
  box-shadow: 5px 10px 10px 1px hsl(207, 29%, 88%);
}

.card-img {
  border-radius: 10px 10px 0px 0px;
  width: 100%;
  height: 23vh;
  object-fit: cover;
  object-position: center;
}

.content-container {
  width: 80%;
  margin: 0 auto;
  min-height: 27vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-title {
  display: inline-block;
  color: hsl(217, 19%, 35%);
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 1rem;
}

.content {
  color: hsl(214, 17%, 51%);
}

.writer-wrapper {
  width: 80%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  min-height: 8vh;
  border-radius: 0px 0px 10px 10px;
  transition: width 0.3s ease-in-out;
}

.writer {
  display: flex;
  align-items: center;
  width: 65%;
  justify-content: space-between;
}

.writer-img {
  width: 25%;
  border-radius: 50px;
}

.details {
  display: flex;
  flex-direction: column;
}

.writer-name {
  color: hsl(217, 19%, 35%);
  font-weight: 700;
  margin-bottom: 3px;
}

.upload-date {
  color: hsl(212, 23%, 69%);
}

.share-container {
  display: none;
  width: 70%;
  margin: 0 0 0 auto;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.share {
  letter-spacing: 5px;
  color: hsl(212, 23%, 69%);
}

.share-wrapper {
  padding: 8px 8px 6px 8px;
  background-color: hsl(210, 46%, 95%);
  border-radius: 50px;
  cursor: pointer;
}

.icon-wrapper {
  width: 40%;
  margin: 0 auto 0 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.icon-wrapper > img {
  cursor: pointer;
}
