body {
    background: linear-gradient(to bottom right , white 10%, lightblue 90% );
    border-radius: 10px
}

.card {
    border: none;
    border-radius: 6px;
    background-color: white
}

.text1 {
    font-size: 13px;
    color: #cbcbcb
}

.info {
    line-height: 17px
}

.cost span {
    color: #fb3531;
    font-weight: bold;
    font-size: 20px
}

.star {
    color: #5670e9;
}

.watchcost span {
    color: #5670e9;
    font-weight: bold;
    font-size: 20px
}

.watch {
    background: #5670e9
}

.tshirtcost span {
    color: #0012b2;
    font-weight: bold;
    font-size: 20px
}

.tshirt {
    background-color: #0012b2
}

.cursor {
    cursor: pointer
}

.image-container {
    position: relative;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center
}

.image-container:nth-child(1) {
    transition: opacity 10s ease
}

.image-container:hover .xyz-replacement {
    display: block;
    animation: fade_in_show 0.5s
}

.xyz-replacement {
    display: none;
    position: absolute;
    bottom: 0;
    z-index: 9;
    transition: opacity 10s ease
}

@keyframes fade_in_show {
    0% {
        opacity: 0;
        transform: scale(0)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

.cart-text {
    transition: all .2s ease-in-out
}

.cart:hover .cart-text {
    font-size: 18px
}

.buy{
    background: #5670e9;
}





