.card-container {
    position: fixed;
    width: 300px;
    /*height: 200px;*/
    overflow: hidden;
    bottom: 25px;
    left: 10px;
    z-index: 9999;
}

.card {
    width: 100%;
    height: 100%;
    background-color: #1b1c1ed1;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-small;
    color: whitesmoke;
}
