body {
    background-color: #8EC5FC;
    background: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 50%, #ffffff 100%);
    font-size: 13px;
    font-family: 'Manrope', sans-serif;   
} 

h1 {
    font-weight: 700;
}

p {
    font-weight: 500;
    color: hsl(214, 17%, 51%);
}


.wrapper {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 20px;
    height: 400px;
    width: 65%;
    margin: auto;
    
}

#drawers {
    height: 100%;
    width: 100%;
    border-radius: 20px 0 0 20px;
}

.column_left {
    width: 40%;
}



.column_right {
 width: 60%;
 padding: 0 70px;
 margin: auto;
}

.avatar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#avatar_michelle {
    float: left;
    border-radius: 50%;
    width: 20%;
    margin-right: 10px;
}

.image_name {
   display: flex;
   align-items: center;
}

.name_date > h4 {
    margin-bottom: 0;
}

.popup {
    position: relative;
    display: block;
    cursor: pointer;
    bottom: 40px;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
  }

.popup .popuptext {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    width: 300px;
    background-color: hsl(217, 19%, 35%);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 9999;
    bottom: 115%;
    left: 50%;
    margin-left: -150px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  
  .popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  

  .popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    z-index: 9999;
  }

.share_icon {
    background-color: hsl(210, 46%, 95%);
    border-radius: 100%;
    padding: 15px;
}

.share {
    align-self: flex-end;
}
 
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }

  .popuptext > ul {
      display: flex;
      padding: 0;
  }

  .popuptext > ul > li {
      list-style-type: none;
      padding: 0 10px;
  }
    
  

  


  @media only screen and (min-width: 320px) and (max-width: 411px) {

    h1 {
        margin-top: 0;
        font-weight: 700;
    }
    
    p {
        font-weight: 500;
        color: hsl(214, 17%, 51%);
    }
    
    .wrapper {
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 20px;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    
    #drawers {
       height: auto;
       width: 100%;
    }
    
    .column_left {
        width: 100%;
    }
    
    .column_right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;
        width: auto;
        height: auto;
    }
    
    .avatar_container {
        display: flex;
        align-items: center;
        
    }
    
    #avatar_michelle {
        border-radius: 50%;
        width: 20%;
        margin-right: 10px;
    }
    
    .share {
        display: inline-block;
        margin-left: auto;
        background-color: hsl(210, 46%, 95%);
        border-radius: 100%;
        padding: 15px;
    }
    
    .share .background-color{
        background: hsl(217, 19%, 35%) !important;
    }
    
    .image_name {
       margin-bottom: 0;
       display: flex;
       align-items: center;
    }
    
    .name_date > h4 {
        margin-bottom: 0;
    }
    
    
    .popup {
        position: relative;
        display: block;
        cursor: pointer;
        bottom: -79px;
        z-index: 9999;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        
      }
    
    .popup .popuptext {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        width: 403px;
        background-color: hsl(217, 19%, 35%);
        color: #fff;
        text-align: center;
        height: 70px;
        border-radius: 0 0 20px 20px;
        padding: 8px 0;
        position: absolute;
        z-index: 9999;
        left: 10%;
        margin-left: -334px;
        text-transform: uppercase;
      }

      #icon {
          background-color: white;
          border-radius: 100%;
          padding: 4px;
      }
      
    
      .popup .popuptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
      }
      
      
      .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
        z-index: 9999;
      }
    
      
    @-webkit-keyframes fadeIn {
        from {opacity: 0;} 
        to {opacity: 1;}
      }
      
      @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity:1 ;}
      }
    
      .popuptext > ul {
          display: flex;
          padding: 0;
      }
    
      .popuptext > ul > li {
          list-style-type: none;
          padding: 0 10px;
      }
  } 


  @media only screen and (min-width: 411px) and (max-width: 768px) {

    h1 {
        margin-top: 0;
        font-weight: 700;
    }
    
    p {
        font-weight: 500;
        color: hsl(214, 17%, 51%);
    }
    
    .wrapper {
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 20px;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    
    #drawers {
       height: auto;
       width: 100%;
    }
    
    .column_left {
        width: 100%;
    }
    
    .column_right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;
        width: auto;
        height: auto;
    }
    
    .avatar_container {
        display: flex;
        align-items: center;
        
    }
    
    #avatar_michelle {
        border-radius: 50%;
        width: 20%;
        margin-right: 10px;
    }
    
    .share {
        display: inline-block;
        margin-left: auto;
        background-color: hsl(210, 46%, 95%);
        border-radius: 100%;
        padding: 15px;
    }
    
    .share .background-color{
        background: hsl(217, 19%, 35%) !important;
    }
    
    .image_name {
       margin-bottom: 0;
       display: flex;
       align-items: center;
    }
    
    .name_date > h4 {
        margin-bottom: 0;
    }
    
    
    .popup {
        position: relative;
        display: block;
        cursor: pointer;
        bottom: -79px;
        z-index: 9999;
        text-align: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        
      }
    
    .popup .popuptext {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        width: 820px;
        background-color: hsl(217, 19%, 35%);
        color: #fff;
        text-align: center;
        height: 70px;
        border-radius: 0 0 20px 20px;
        padding: 8px 0;
        position: absolute;
        z-index: 9999;
        left: 10%;
        margin-left: -556px;
        text-transform: uppercase;
      }

      #icon {
          background-color: white;
          border-radius: 100%;
          padding: 4px;
      }

      .share-icon, .popup {
         align-self: flex-end;
      }
      
    
      .popup .popuptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
      }
      
      
      .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
        z-index: 9999;
      }
    
      
    @-webkit-keyframes fadeIn {
        from {opacity: 0;} 
        to {opacity: 1;}
      }
      
      @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity:1 ;}
      }
    
      .popuptext > ul {
          display: flex;
          padding: 0;
      }
    
      .popuptext > ul > li {
          list-style-type: none;
          padding: 0 10px;
      }

  }

  
  

  @media only screen and (min-width: 768px) and (max-width: 1024px) {

    h1 {
        margin-top: 0;
        font-weight: 700;
    }
    
    p {
        font-weight: 500;
        color: hsl(214, 17%, 51%);
    }
    
    .wrapper {
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 20px;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    
    #drawers {
       height: auto;
       width: 100%;
    }
    
    .column_left {
        width: 100%;
    }
    
    .column_right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 60px;
        width: auto;
        height: auto;
    }
    
    .avatar_container {
        display: flex;
        align-items: center;
        
    }
    
    #avatar_michelle {
        border-radius: 50%;
        width: 20%;
        margin-right: 10px;
    }
    
    .share {
        display: inline-block;
        margin-left: auto;
        background-color: hsl(210, 46%, 95%);
        border-radius: 100%;
        padding: 15px;
    }
    
    .share .background-color{
        background: hsl(217, 19%, 35%) !important;
    }
    
    .image_name {
       margin-bottom: 0;
       display: flex;
       align-items: center;
    }
    
    .name_date > h4 {
        margin-bottom: 0;
    }
    
    
    .popup {
        position: relative;
        display: block;
        cursor: pointer;
        bottom: -129px;
        z-index: 9999;
        text-align: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        
      }
    
    .popup .popuptext {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        width: 820px;
        background-color: hsl(217, 19%, 35%);
        color: #fff;
        text-align: center;
        height: 120px;
        border-radius: 0 0 20px 20px;
        padding: 8px 0;
        position: absolute;
        z-index: 9999;
        left: 10%;
        margin-left: -556px;
        text-transform: uppercase;
      }

      #icon {
          background-color: white;
          border-radius: 100%;
          padding: 4px;
      }

      .share-icon, .popup {
         align-self: flex-end;
      }
      
    
      .popup .popuptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
      }
      
      
      .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
        z-index: 9999;
      }
    
      
    @-webkit-keyframes fadeIn {
        from {opacity: 0;} 
        to {opacity: 1;}
      }
      
      @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity:1 ;}
      }
    
      .popuptext > ul {
          display: flex;
          padding: 0;
      }
    
      .popuptext > ul > li {
          list-style-type: none;
          padding: 0 10px;
      }

  }
  
