/* GENERAL */

*
{
    margin: 0px;
    padding: 0px;
    user-select: none;
}

body
{
    size: 100%;
    background-color: #131316;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: unset;
    size: 100%;
    scroll-behavior: smooth;
    display: grid;
}

body::-webkit-scrollbar 
{
    display: none;
}

/* CLASS */

/* .cartouche
{
    height: auto;
    width: auto vh;;
} */

.wrapper
{
    height: auto vh;
    width: 60vw;
    /* width: calc(100% - (1/30*100)vw); */
    margin: auto;

    display: grid;
    place-items: center; 
    align-content: center;
    justify-content: space-evenly;
}

.name
{
    float: left;
    width: 100%;
    height: 150px;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
}

.character
{
    position: fixed;
    z-index: -1;
    transform: translateX(-20%);
    float: left;
    width: 50%;
    height: 1080px;
    /* height: 100vh; */
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
}

.right_content
{
    /* background: rgba(0, 0, 0, 0.5); */
}

.deck
{
    float: left;
    width: 100%;
    /* height: 730px; */
    height: auto vh;
    /* height: 100vh; */
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
}

.extradeck
{
    float: left;
    width: 100%;
    /* height: 200px; */
    height: auto vh;
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
    padding-top: 2%;
    padding-bottom: 2%;
}

.card
{
    float: left;
    width: 110px;
    /* width: 10vw;
    height: 10vw; */
    height: 160px;
    margin-top: 1%;
    margin-left: 1%;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
    background-position: center;
    background-size: cover;
}

.card:hover
{
    box-shadow: 2px 2px 4px #000000;
    text-shadow: 2px 2px 4px #000000;
    transform: scale(3);
    cursor: pointer;
}


/*** MEDIA ***/

@media screen and (max-width: 720px)
{

.wrapper
{
    height: auto vh;
    width: 90vw;
    /* width: calc(100% - (1/30*100)vw); */
    margin: auto;

    display: grid;
    place-items: center; 
    align-content: center;
    justify-content: space-evenly;
}

.name
{
    float: left;
    width: 100%;
    height: 150px;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
}

.character
{
    position: fixed;
    z-index: -1;
    transform: translateX(-20%);
    float: left;
    width: 125%;
    height: 1080px;
    /* height: 100vh; */
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
}

.right_content
{
    /* background: rgba(0, 0, 0, 0.5); */
}

.deck
{
    float: left;
    width: 100%;
    /* height: 730px; */
    height: auto vh;
    /* height: 100vh; */
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
}

.extradeck
{
    float: left;
    width: 100%;
    /* height: 200px; */
    height: auto vh;
    /* background: rgba(0, 0, 0, 0.5); */
    background-position: center;
    background-size: cover;
    padding-top: 2%;
    padding-bottom: 2%;
}

.card
{
    float: left;
    width: 55px;
    /* width: 10vw;
    height: 10vw; */
    height: 80px;
    margin-top: 1%;
    margin-left: 1%;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
    background-position: center;
    background-size: cover;
}

.card:hover
{
    box-shadow: 2px 2px 4px #000000;
    text-shadow: 2px 2px 4px #000000;
    transform: scale(3);
    cursor: pointer;
}


} /* MEDIA 720PX */