h1{
    margin-bottom: 0;
}

.cover .action{
    max-width: 1000px;
}

.cards{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    width: 100%;
}
.cards div, .video a img{
    border-radius: 20px;
    box-shadow: 0 0 5px black;
}
.cards div, .video a{
    margin: 10px 5px;
}
.cards div:hover, .video a img:hover{
    box-shadow: 0 0 10px black;
}
.card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    border: 0px solid black;
    width: 250px;
    height: 380px;
    padding: 3px;
}
.card img{
    height: auto;
    max-width: 60%;
    border-radius: 20px;
}
.card .btn{
    margin: 5px;
    margin-bottom: 10px;
    padding: 15px;
    width: 50%;
}

.video a img{
    width: 300px;
}


@media(max-width: 855px){

    .cards{
        justify-content: center;
    }
}

@media screen and (prefers-color-scheme: dark) {
    .cards div, .video a img{
        box-shadow: 0 0 5px white;
    }
    .cards div:hover, .video a img:hover{
        box-shadow: 0 0 10px white;
        color: white;
    }
}