.favourite-characters{
    z-index: 1;
    /* border: 5px solid rebeccapurple; */
    height: 85vh;
}

.cards-container{
    position: relative;
    color: white;
    color: black;
    flex-direction: row;
    flex-wrap:wrap;
    height: 100%;
    width: 100vw;
    overflow-y: scroll;
    justify-content: center;
}

.card{
    background-color: rgba(238, 233, 233, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 3px gray;
    margin: 1rem 2rem;
    flex-direction: column;
    border-radius: .5rem;
}

.character-info{
    width: 100%;
    border-radius: .3rem;
    /* background-color: navy; */
    text-align: center;
    cursor: pointer;
    color: white;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-weight: bold;
    font-size: .9rem;
}
.fav-btns-bg{
    background-color: navy;
}
.fav-btns-bg.dark{
    background-color: rgb(198, 0, 0);
}
.remove-btn{
    width: 100%;
    color: white;
    /* background-color: navy; */
    border: none;
    outline: none;
    border-radius: .3rem;
    padding: 0.5rem;
    font-weight: bold;
    font-size: .9rem;
    cursor: pointer;
    margin-top: .2rem;
}

.no-characters{
    width: 60%;
    font-size: 2rem;
    padding: 0.4rem;
    background-color: rgba(238, 233, 233, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 3px gray;
    font-weight: bold;
    text-align: center;
    position: relative;
    bottom: 15rem;
}

.popup{
    z-index: 2;
}