body {
    font-family: "Poppins", sans-serif;
    background-image: url("../imagens/background.png");
    background-size: cover;
    background-position: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(8px);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
}

.pokedevs {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.cartao-pokedev {
    display: none;
    max-width: 360px;
    border-radius: 10px;

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cartao-pokedev.aberto {
    display: block;
}

.cartao-pokedev img {
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.cartao-pokedev .cartao-topo {
    padding: 30px 40px 0;
}

.cartao-pokedev .nome {
    margin-bottom: 5px;
}

.cartao-pokedev .tipo {
    background-color: #ffffff;
    font-size: 12px;
    opacity: 0.7;
    border-radius: 10px;
    padding: 2px 10px;
}

.cartao-pokedev .detalhes {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartao-pokedev .cartao-informacoes {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 80px 30px 50px;
    margin-top: -70px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.cartao-pokedev .cartao-informacoes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #6b727a;
}

.cartao-pokedev .cartao-informacoes .descricao {
    padding: 0 10px;
    font-size: 15px;
    max-height: 150px;
    overflow-y: scroll;
}

.tipo-eletrico {
    background-color: #fcc719;
}

.tipo-fogo {
    background-color: #f15000d2;
}

.tipo-agua {
    background-color: #015C98;
}

.tipo-grama {
    background-color: #49D0B0;
}

.tipo-trevas {
    background-color: #BA68C8;
}

.tipo-fada {
    background-color: #C29791;
}

.listagem {
    max-width: 200px;
}

.listagem .pokedev img {
    width: 25%;
}

.listagem .pokedev {
    background-color: #6b727a;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    margin-bottom: 10px;
    cursor: pointer;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    min-height: 70px;

    transition: 0.15 ease-in-out;
}

.listagem .pokedev:hover {
    transform: scale(1.05);
}

.listagem .pokedev span {
    padding-right: 20px;
}

.listagem .pokedev.ativo {
    background-color: #fa6668;
}




