body{
    cursor: url(../assets/cursor/yugicursor.png), default;
}

button, a, img:hover, button:hover, a:hover{
    cursor: url(../assets/cursor/yamiyugicursorGLOW.png), auto;
}

.bg-video {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.video{
    height: 100vh;
}

.bg-video::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
    linear-gradient(
        90deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 1) 100%
        );
}

main{
    position: relative;
    z-index: 3;
    display: flex;
    height: 100vh;
}

.container-left{
    width: 35%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.container-right{
    width: 65%;
}

.caixa-pontos{
 background-color: #fff;
 padding: 30px;
}

.frame{
    border: 3px solid #000;
    border-radius: 5px;
}

.cartao-detalhes{
 background-color: #fff;
 padding: 1rem;  
 display: flex; 
 flex-direction: column;
 align-items: center;
 justify-content: space-between;
 height: 6rem;
 width: 100%;
}

#nome-cartao{
    font-size: 0.8rem;
}

#tipo-cartao{
    font-size: 1rem;
}


.container-caixa-cartao{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.3rem;
}

/* .carta-vs{
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-content: center;
    padding: 0.1rem;
    height: 300px;
    
} */

.vs-top, .vs-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
}

.vs-bottom{
    margin-top: 1rem;
}

#proximo-duelo{
    display: none;
}

.caixa-cartao{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0.1rem;
    height: 9rem;
    width: 100%;
}

.card-infield{
    height: 11.2rem;
    width: 8rem;
    border: 1px solid #fff;
    border-radius: 8px;
}

.card{
    transition: transform 0.2s;
}

.card:hover{
    transform: scale(1.2);
}


