* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-family: "Manrope", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: aliceblue;
}
main {
  margin: 10%;
  background-color: white;
}
#drawer {
  width: 100%;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

#michell {
  border-radius: 50%;
  width: 50px;
}

.author {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  padding-top: 0;

  z-index: 1;
}
button {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: none;
  align-self: center;
  color: hsl(0, 0%, 100%);
  background-color: hsl(214, 17%, 51%);
}
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
.text-Content {
  padding: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}
h2 {
  color: hsl(217, 19%, 35%);
  margin-bottom: 5%;
}
#article {
  margin-bottom: 8%;
}
h4 {
  color: hsl(217, 19%, 35%);
}
p {
  color: hsl(214, 17%, 51%);
}

.links {
  width: 100%;
  height: 100%;
  display: flex;
  display: none;
  align-items: center;
  padding: 20px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;

  justify-content: space-around;
  background-color: hsl(217, 19%, 35%);
}

#first-btn {
  margin-right: 17px;
  color: hsl(217, 19%, 35%);
  background-color: aliceblue;
}
.michelle-2 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon:hover {
  opacity: 0.8;
  cursor: pointer;
}
.btn2 {
  display: none;
}
.share-container {
  display: none;
}

@media (min-width: 776px) {
  main {
    display: flex;
    flex-direction: row;
  }
  .right {
    width: 50%;
  }
  #drawer {
    width: 50%;
  }
  .btn1 {
    display: none;
  }
  .btn2 {
    display: block;
  }
  .share-container {
    display: flex;
    background-color: hsl(217, 19%, 35%);
    border-radius: 7px;
    width: 248px;
    height: 60px;
    position: absolute;
    padding: 1.125rem 2.5rem;
    left: 77%;
    bottom: 18%;
    z-index: 66;
  }
  .hidden {
    display: none;
  }
  .share-icons {
    display: flex;
    gap: 0.5rem;
  }
  .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    max-height: 500px;
  }
  .right {
    padding-bottom: 0;
  }
}
