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

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

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

.bg-video .video {
    height: 100vh;
}

.bg-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    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;
}

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

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

.card{
    transition: ease-in-out 300ms;
}

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