*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}



body {
    background-color: black;
    width: 100vw;
    height: 100vh;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
}

h1 {
    font-size: 64px;
    margin-top: 30px;
    text-align: center;
    color: aliceblue;
    font-family: "Chelsea Market", system-ui;
    font-weight: 400;
    font-style: normal;
}

p {
    margin-top: 30px;
    text-align: center; 
    color: aliceblue;
    font-family: "Chelsea Market", system-ui;
    font-weight: 400;
    font-style: normal;
}

.score {
    margin-top: 30px;
    text-align: center; 
    color: aliceblue;
    font-family: "Chelsea Market", system-ui;
    font-weight: 400;
    font-style: normal;
}

.board {
    margin-top: 24px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.card {
    width: 120px;
    height: 200px;
    display: inline-block;
    margin: 4px;
    background-image: url(IMG/karta.png);
    background-size: cover;
    box-shadow: 0px 0px 4px #3e9b2bd2;
    border-radius: 8px;
    cursor: pointer;
    filter: brightness(70%);
    transition: all .3s ease-in-out;
}

.card:hover {
    box-shadow: 0px 0px 8px #ffffff;
    filter: brightness(100%)
}

.cardA {
    width: 120px;
    height: 200px;
    display: inline-block;
    margin: 4px;
    background-image: url(IMG/karta.png);
    background-size: cover;
    box-shadow: 0px 0px 4px #ffffff;
    border-radius: 8px;
    cursor: default;
    filter: brightness(100%);
    transition: all .3s ease-in-out;
}

.bottombar {
    display: flex;
    justify-content: space-between;
}