body {
    width: 100vw;
    height: 100vh;
    font-weight: 1000;
    color: white;
    background-color: #3e4451;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    display: block; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2000; /* 2000 Becasue Bootstrap has z index between 1000-2000*/
}

.login-box {
    position: fixed;
    inset: 0px;
    width: 20rem;
    height: 19rem;
    max-height: 100dvh;
    max-width: 100vw;
    margin: auto;
    padding: 1rem;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 10%;
    background-color: crimson;
}

.card-grid {
    width: 100%;
    height: 100%;
    margin: auto;
}

.playing-card-image {
    width: 100%;
    height: 100%;
    margin: auto;
    border: 1px solid white;
    border-radius: 20%;
    padding: 1rem;
}

.playing-card {
    width: 11rem;
    height: 11rem;
}

.topper {
    width: 100%;
    height: 3rem;
    margin-bottom: 1rem;
}

#gameover {
    display: none;
    justify-content: center;
}