#list-yo-kai{
    display: flex;
    justify-content: center;
    justify-self: center;
    align-items: center;
    flex-direction: row;
    row-gap: 1rem;
    column-gap: 1rem;
    flex-wrap: wrap;
    margin-left: 2rem;
    margin-right: 2rem;
    max-width: 70rem;
}

.titre-de-partie{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.3rem;
    text-align: center;
}

.block-yo-kai{
    transition: 0.2s;
    position: relative;
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 0rem;
    border: solid rgb(229, 231, 235) 0.6px;
    border-radius: 12px;
    color:rgb(10, 10, 10);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    width: 10rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    /* color: inherit; */
}

.block-yo-kai:hover{
    transition: 0.2s;
    border-color: rgb(96, 165, 250);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.12);
}

.yo-kai-sprite{
    display: flex;
    justify-self: center;
    width: 80%;
    aspect-ratio: 1/1;
    border: solid 0px;
    object-fit: contain; 
}

.yo-kai-name{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.yo-kai-id{
    color:rgb(181, 181, 181);
    position:absolute;
    top:-0.8rem;
    left:0.8rem;
}

.rang, .tribue{
    position:absolute;
    width: 1rem;
    height: 1rem;
    top: 0.4rem;
    right: 0.8rem;
}

.tribue{
    right: 2.5rem;
}