.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all .3s; 
}
.popup:target {
      opacity: 1;
      visibility: visible; 
}
.popup__close:link, .popup__close:visited {
      color: #333;
      font-size: 3rem;
      position: absolute;
      right: 5%;
      top: 3%;
      text-decoration: none;
      display: inline-block; 
}
.popup__close:hover {
      color: #e74c3c; 
}
.popup__content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 75%;
      background-color: white;
      box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
      border-radius: 3px;
      display: table;
      overflow: hidden; 
}

.follow_info{
    text-align: center;
    font-size: 2rem;
    padding: 2rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.follow_container{
    padding: 2rem 4rem;
    height: 36rem;
    overflow: scroll;
}
.follow_cards{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #797979;
}
.follow_cards-info{
    display: flex;
    align-items: center;
}
.follow_cards-info > img{
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 1rem;
}
.follow_cards-info > span{
    font-weight: 600;
    font-size: 1.4rem;
}
.follow_cards-btn{
    font-size: 1.3rem;
    background: #e74c3c;
    color: white;
    border: none;
    outline: none;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
}