body{
    overflow-x: hidden;
}

.cards-container{
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: hidden;
}
.character-info .btn{ 
    width: 100%;
}
/* css for character card */
.card{
    background-color: hsla(0, 0%, 100%, 0.62);
    height: 484px;
    width: 250px;
    margin: 40px 25px;
    text-align: center;
    border: 1px solid black;
    border-radius: 10px;
    gap: 5px;
    z-index: 2;
    transition: all 300ms ease-in-out;
    box-shadow: 4px 8px 8px 0px hsl(218, 36%, 4%);
    backdrop-filter: blur(2px);
}

.card:hover{
    transform: scale(1.05) translateY(-7px);
}

.card img{
    border-radius: 10px;
    padding: 10px;
    
}

.name{
    font-size: 20px;
    font-weight: bold;
}
/* css for btn */
.btn{
    max-width: 125px;
}
.remove-btn{
    border-radius:  10px 10px;
    margin-left: 65px;
    margin-bottom: 10px;
}

.no-characters{
    font-size: 40px;
    color: var(--text-color);
}

.home-btn{
    margin-left: 350px;
    padding: 10px;
}

