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

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

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

.bg-video .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.8) 50%, rgba(0,0,0,1) 100%); 
}

.container{
    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%;
}

.score_box{
    background-color: #fff;
    padding: 30px;

}

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

.card_details{
    background-color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 7rem;
    width: 100%;
}

#card-image{
    height: 26.4rem;
    width: 18rem;
}

#card-name{
font-size: 1rem;
}

#card-type{
font-size: 1rem;
}

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

.card-versus__container{
    display: flex;
    flex-direction: column;
    padding-top: 0.1rem;
    height: 410px;

}

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

#computer-field-card,
#player-field-card{
    height: 24.4rem;
    width: 18rem;
    display: flex;
    justify-content: space-between;
    padding-left: 8px;
}

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

#next-duel{
    display: none;
}

.card-box{
    height: 9rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.card-infield{
    height: 25rem;
    width: 18rem;
    border-radius: 8px;
}

.card {
transition: transform 0.2s;
}

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

#footer {
    color: #000000;
    text-align: center;
    position: fixed;
    bottom: 10px;
    width: 100%;
    padding: 10px;
    font-size: 1.6rem;
    text-decoration: none;
}
