body {
    font-family: Yugioh, serif;
    background-image: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-site.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    gap: 30px;
}

.cabecalho {
    display: flex;
    justify-content: center;
}

.cabecalho .titulo {
    color: #f1ecff;
}

.cartao {
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
    position: absolute;
}

.cartao.selecionado {
    opacity: 1;
    z-index: 1;
}

.lista-personagens {
    width: 300px;
    height: 500px;
    border-radius: 10px;
    position: relative;

}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
}

.cartao .nome {
    font-size: 13px;
    padding: 5px;
    text-transform: uppercase;
    background: radial-gradient(circle, #f3e2c8, #e4cfa5, #c4a57a);
    border: 3px solid #a67c52;
    border-radius: 4px;
}

.cartao .estrela {
    width: 20px;
    height: 20px;
    background-image: url('/Projeto-Pagina-Web-Cartas/src/imagens/nivel-carta.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 2px;
}

.cartao .nivel-carta {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
}

.cartao .imagem-carta {
    max-width: 260px;
    align-self: center;
}

.cartao .informacoes {
    border-radius: 5px;
    max-width: 300px;
    color: 0, 0, 0;
    background: radial-gradient(circle, #f3e2c8, #e4cfa5, #c4a57a);
    border: 3px solid, #a67c52;
    text-align: left;
    line-height: 1.5;
    padding: 5px;
}

.cartao .informacoes .informacoes-ataque {
    display:flex;
    justify-content: flex-end;
    padding: 10px;
}

.cartao .informacoes/ .informacoes-ataque .span {
    font-size: 13px;
}

.cartao .informacoes .descricao {
    border-bottom: 1px solid #000000;
    padding: 10px;
    max-height: 95px;
    overflow-y: scroll;
    font-size: 13px;
}

.fundo-1 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-3.jpg') no-repeat;
}

.fundo-2 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-2.jpg') no-repeat;
}

.fundo-3 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-1.jpg') no-repeat;
}

.fundo-4 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-4.jpg') no-repeat;
}

.fundo-5 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-5.jpg') no-repeat;
}

.fundo-6 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-6.jpg') no-repeat;
}

.fundo-7 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-7.jpg') no-repeat;
}

.fundo-8 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-8.jpg') no-repeat;
}

.fundo-9 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-9.jpg') no-repeat;
}

.fundo-10 {
    background: url('/Projeto-Pagina-Web-Cartas/src/imagens/fundo-10.jpg') no-repeat;
}

.btn-seta {
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.btn-seta.btn-voltar {
    transform: rotateY(180deg)
}

.btn-seta:hover {
    background-color: aqua;
}

body::-webkit-scrollbar-track {
    background-color: #c08057;
}

::-webkit-scrollbar {
    width: 5px;
} 

::-webkit-scrollbar-thumb {
    background-color: #c08057;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c08057;
}