* {
  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%);

  --base-font-size: 13px;
  --base-font-weight: 500;
  --heavy-font-weight: 700;

  --family-font: "manrope", sans-serif;

  --mobile-view: 375px;
  --tablet-view: 768px;
  --desktop-view: 1440px;
}

body {
  font-size: var(--base-font-size);
  font-weight: var(--base-font-weight);
  font-family: var(--family-font);
  color: var(--Very-Dark-Grayish-Blue);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

@media screen and (min-width: 375px) {
  .container {
    position: relative;
    width: 20.5rem;
    margin: 2rem auto;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .img_1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 -1rem;
    border-radius: 10px 10px 0 0;
  }

  .drawer {
    height: 12.5rem;
    width: 100%;
  }
  .avater {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .card {
    display: flex;
    flex-direction: column;
    padding: 1.7rem 2rem 1rem 2rem;
    flex: 1;
    gap: 1.5rem;
  }

  .card_header {
    font-size: 1rem;
    font-weight: var(--heavy-font-weight);
    padding-top: 0.5rem;
    line-height: 1.5rem;
    word-spacing: 1px;
  }

  .card_text {
    font-size: 0.76rem;
    word-spacing: 2.5px;
    font-weight: var(--base-font-weight);
    letter-spacing: 0.1px;
    line-height: 1.15rem;
    color: var(--Desaturated-Dark-Blue);
  }

  .avatar_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .avatar_detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--base-font-size);
    list-style: normal;
    padding: 0.2rem 0rem;

    h2 {
      padding-top: 3px;
      padding-left: 1px;
      font-size: var(--base-font-size);
    }
  }

  .avatar_detail > p {
    color: var(--Grayish-Blue);
    font-weight: var(--base-font-weight);
    font-size: small;
    padding-top: 1px;
    padding-left: 1px;
  }

  .btn {
    margin-right: 2px;
    margin-top: 10px;
    padding: 0.5rem;
    isolation: isolate;
    border-radius: 50%;
    border: none;
    background-color: var(--Light-Grayish-Blue);
    z-index: 20;
    cursor: pointer;
  }

  .dont {
    display: none;
  }

  .sm_share {
    position: absolute;
    transition: opacity 0.5s;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0.5rem 1rem;
    height: 4rem;
    gap: 1rem;
    background-color: var(--Very-Dark-Grayish-Blue);
    border-radius: 0 0 10px 10px;
  }
  .sm_share p {
    color: white;
    font-size: 0.75rem;
    font-weight: var(--base-font-weight);
    padding-left: 1rem;
    letter-spacing: 5.55px;
  }

  .share_btn {
    fill: #6e8098;
    background-color: inherit;
  }

  .btn_new {
    background-color: #6e8098;
    .share_btn {
      fill: white;
    }
  }
}

@media screen and (min-width: 1025px) {
  .container {
    position: relative;
    display: flex;
    gap: 1.1rem;
    width: 735px;
    height: 280px;
  }

  .img_1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0rem;
    border-radius: 10px 0 0 10px;
  }
  .drawer {
    height: 100%;
    width: 39.5%;
    border-radius: 10px 0 0 10px;
  }

  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 3rem 1rem 1rem;
    flex: 1;
    gap: 1rem;
  }

  .card_header {
    font-size: 1.3rem;
    font-weight: var(--heavy-font-weight);
    line-height: 1.89rem;
  }

  .bg_share {
    position: absolute;
    right: 1%;
    bottom: 21%;
    width: 23%;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 2rem;
    gap: 1rem;
    background-color: var(--Very-Dark-Grayish-Blue);
    border-radius: 10px;
  }
  .bg_share p {
    color: white;
    font-size: 0.65rem;
    font-weight: var(--base-font-weight);
    padding-left: 1rem;
  }
}
