body{
    font-family: 'Outfit', sans-serif;

    background-image:url(../images/fundo-solo-leveling.jpeg) ;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.cabecalho{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-top: 50px;
    padding-bottom: 25px;
    
    
}

.cabecalho .titulo {
    font-family: 'Kaushan Script', cursive;
    color: rgba(33, 29, 37, 0.777);
    font-size: 34px;
    margin-bottom: 30px;
    text-shadow: 
    -1px -1px 0px rgb(240, 11, 198), 
    -1px 1px 0px rgb(206, 9, 206),
     1px -1px 0px rgb(195, 15, 165),
     1px 0px 0px rgba(255, 8, 201, 0.793);
     text-shadow: 0.1em 0.1em rgb(117, 13, 197)

}
    
.cabecalho .adaga{
    height: 90px;
    width: 50;
    margin-bottom: 8px;
}

.solo_level{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin: 60px, 0;
}

.sung{
    height: 330px;
    max-width: 100%;
    max-height: 280px;
    padding: 20px; 
}

.solo_lista{
    width: 310px;
    height: 520px;
    position: relative;
}

.btn_seta{
    background-color: #fff;
    border-radius: 100px;
    height: 70px;
    width: 70px;
    border: 0;
    cursor: pointer;
    transition: backgroun-color 0.2s ease-in-out;
    box-shadow: rgba(50, 50, 50, 93) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
   
}

.btn_seta.btn_voltar {
    transform: rotateY(180deg);
    box-shadow: rgb(50, 50, 93) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    
}

.btn_seta:hover {
    background-color: #8351fe;
    
}

.cha {
    height: 260px;
}

.cartao {
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    padding: 12px;
    border-radius: 10px;
    box-shadow: rgba(105, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: opacity 0.3s ease-in-out;

}

.cartao.selecionado {
    opacity: 1;
    z-index: 1;
}

.fundo-1 {
  background-image: url(../images/fundo-card-black.jpg);
  background-repeat: no-repeat;
  
}

.fundo_2{
    background-image: url(../images/fundo-card-3.jpg);

}

.fundo_3{
    background-image: url(../images/fundo-card-1.jpg);

}

.fundo_9{
    background-image: url(../images/fundo-card-9.jpg);
}

.solo_level .texto{
    color: white;
}

.cartao .info {
    background-color: rgba(179, 177, 185, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px, 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}

.cartao .info .nome{
    color: black;
    font-size: 22px;
    padding: 4px;
    
}

.cartao .info .vida{
    background-color: rgb(75, 60, 87);
    color: #f1ecff;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 20px;
}

.container_image{
    text-align: center;
}

.cartao .descricao{
    background-color: rgb(43, 42, 45);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cartao .descricao .titulo {
    background-color: rgb(75, 60, 87);
    color: white;
    font-size: 15px;
    padding: 10px;
}

.cartao .descricao .texto{
    font-size: 14px;
    padding: 12px;
    text-align: justify;
    max-height: 115px;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    width: 10px;
    background-color: rgba(142, 137, 152, 0.7);
}
