body {
    margin:0;
    background-color: #308834;
}

#bg {
    z-index: -10;
    position:fixed;
    height: 100vh;
    width: 100vw;
    box-shadow: inset 0 0 100vh black;
}

.cards {
    padding: 0;
    margin: 0;
    list-style: none;
    display:flex;
    justify-content:space-around;
    margin-right:225px;
    position:relative;
    top:20px;
}

.cards>li {
    width:0px;
    transition:all 0.8s ease;
}

.cards>li>img {
    position:relative;
    top: -150px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    border-radius:12px;
    transition:all 0.3s ease;
    -webkit-user-drag: none;
    user-select: none;
    opacity: 0;
}

.cards>li>img:hover {
    transition:all 0.1s ease;
    box-shadow: 0px 0px 55px 0px rgba(0,0,0,1);
    margin-top:-15px;
}

button {
    width:100px;
    height:30px;
}

#cardCount {
    font-family: 'Courier New', Courier, monospace;
    font-size:18px;
    font-weight: bold;
    color:white;
}