#Deck-Container {
    height: 100vh;
    width: 100vw;
    position: absolute;

    background-color: rgba(0, 0, 0, 0);
    z-index: 99;

    display: none;
    align-items: center;
    justify-content: center;
}

#Deck-Screen {
    background-color: rgb(94, 4, 4);
    width: 150vh;
    aspect-ratio: 3/2;
    box-shadow: 0px 0px 100px 100px black;

    display: flex;
    align-items: center;
    justify-content: center;
}

#Deck-Screen .border {
    width: 95%;
    height: 90%;
    border: 3px dashed rgb(255, 255, 255);

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#main-border {
    display: flex;
    flex-direction: column;
    gap: 2%;

    padding: 2%;
}

.sets {
    width: 100%;
    height: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5%;
}

.sets .card {
    transition: 0.3 ease-in-out;
}

.sets .card:hover {
    transform: scale(106%);
}

/* styles specificlly added towards deck cards so it looks nicer*/

.sets div {
    border-radius: 0.5vw;
}

.sets .rankTop {
    font-size: 1.5vw;
}

.sets .rankBottom {
    font-size: 1.5vw;
}

#exit {
    position: absolute;
    width: 15vw;
    height: 8vh;

    top: 0;
    right: 0;

    background-color: rgb(94, 4, 4);
    border-radius: 0px 0px 0px 50px;
    box-shadow: 0px 0px 100px 30px black;
    transition: 0.3s ease-in-out;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2vw;
    cursor: pointer;
}

#exit:hover {
    background-color: rgb(131, 8, 8);
}
