body {
    background-color: #111;
    color: white;
    font-family: 'Raleway', sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5em;
    gap: 1.5em;
}

.payment-info {
    display: flex;
    align-items: center;
    margin-block: -1em;
    gap: 0.8em;
}

.payment-info > h1 + .price{
margin-left: -0.5em;
}



.description-card {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2em;
}

.txt {
    font-size: 12px;
    margin-bottom: 0px;
}

.pink-border {
    border: 1px solid #ff3683;
    /* border: 1px solid #ff0a68; */
}

.pink-background {
    background-color: #ff3683;
    /* background-color: #ff0a68; */
}

.gray-border {
    border: 1px solid #888;
}

.gray-background {
    background-color: #888;

}

.violet-border {
    border: 1px solid #c739ff;
}

.violet-background {
    background-color: #c739ff;
}

.crossed {
    text-decoration: line-through;
    color: #888;
}

.card {
    background-color: #222;
    color: white;
    padding: 1em;
    padding-inline: 2em;
    margin: 0.5em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
}

.sale-title {
    /* Or any color that signifies a sale */
    color: white;
    text-align: center;
    width: 25%;
    position: absolute;
    /* Make sure the parent has a position:relative */
    top: -1em;
    /* Adjust this value based on your design */
    left: 1em;
    padding: 5px 0;
    /* Adjust padding as needed */
    border-radius: 25px;
    align-self: center;
}


.price {
    font-family: 'Barlow Condensed', sans-serif;
}

button {
    background-color: #ff0040;
    color: white;
    padding: 10px;
    border: none;
    width: 15em;
    border-radius: 25px;
    margin-top: 1em;
    cursor: pointer;
    align-self: center;
    transition: transform 0.4s ease;
}

button:hover {

    transform: scale(1.1);
}

button:active {
    transform: scale(1);
    background-color: #ff0020;
}