#singleCard {
    min-height: 100dvh;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgb(128, 128, 128, 0.9);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-family: "Pokemon Solid", sans-serif;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 0.5rem;
        top: -1.5rem;
    }

    @media (max-width: 430px) {
        gap: 0;
    }

    h2 {
        position: absolute;
        bottom: 3rem;
        right: 5rem;
        font-family: "Pokemon Hollow", sans-serif;
        padding-left: 1rem;
    }

    .typesInfo {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 18px;
    }

    .type {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        color: black;
        font-size: calc(16px + 0.5dvw);
        width: 40%;
        height: 5dvh;
    }

    nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
        height: 3em;
        margin-top: -1rem;

        @media (max-width: 430px) {
            margin-top: -2.5rem;
        }

        .hoverLight {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30%;
            height: 5dvh;
            background: rgb(63, 178, 207);
            border-radius: 5px;
            cursor: pointer;
            /* margin-bottom: 6em; */
        }

        .hoverLight:hover {
            background: rgba(173, 216, 230, 0.5);
            box-shadow: 5px 5px 10px black;
        }
    }

    .contentDesc {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 10em;
        margin-top: 3.8rem;

        @media (max-width: 530px) {
            margin-top: 2.8rem;
        }

        table {
            width: 80%;
            /* margin-top: 1em; */

            td {
                height: 0.5em;
                padding-left: 20px;
                line-height: 1.8;
                font-size: 1.2rem;

                @media (max-width: 530px) {
                    line-height: 1.5;
                    font-size: 1rem;
                }
            }

            .flex-space {
                text-align: end;
            }
        }
    }
}

.btnSingleCardview {
    display: flex;
    justify-content: space-around;
    width: 20%;
    height: 5dvh;
    margin-top: 1em;

    @media (max-width: 768px) {
        display: none;
    }

    button {
        width: 100%;
        height: 5dvh;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(240, 239, 239);
        border-radius: 10px;
        font-family: "Pokemon Solid", sans-serif;
        cursor: pointer;
        font-size: 1rem;
    }

    button:hover {
        box-shadow: 5px 5px 10px black;
    }
}

.btnSingleCardviewMobile {
    display: flex;
    justify-content: space-around;
    width: 40%;
    height: 5dvh;
    gap: 2rem;
    /* margin-top: 1em; */
    display: none;

    @media (max-width: 768px) {
        display: flex;
        height: 3rem;
    }

    button {
        width: 100%;
        height: 5dvh;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(240, 239, 239);
        border-radius: 10px;
        font-family: "Pokemon Solid", sans-serif;
        cursor: pointer;
        font-size: 1rem;
    }

    button:hover {
        box-shadow: 5px 5px 10px black;
    }
}

img {
    height: 15rem;
    width: 15rem;
    /* object-position: bottom; */
    /* position: absolute;
        top: -3%;
        left: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* transform: translate(-50%, 0); */
    filter: drop-shadow(4px 4px 8px black);

    @media (max-width: 430px) {
        height: 10rem;
        width: 10rem;
    }
}

h2 {
    font-size: calc(16px + 1dvw);
}

p {
    top: 25px;
    font-size: calc(16px + 0.7dvw);
}

&:hover {
    box-shadow: 5px 5px 10px black;
}
