@keyframes confirm-add {
    0% { opacity: 0; }
    33% { opacity: 1; }
    66% { opacity: 1; }
    100% { opacity: 0; }
}

.confirm-animated {
    animation: confirm-add 3s ease 0s 1 none;
}

.confirm-cart-add {
    position: absolute;
    opacity: 0;
    margin: auto;
    width: fit-content;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.15em;
    background-color: #FF9A8A;
}

#products-container {
    margin: auto;
    list-style: none;
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-inline-start: 0;
}

h2 {
    margin: 0;
    text-align: center;
}

.product {
    width: 500px;
    height: auto;
    margin: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product img {
    width: 300px;
    height: auto;
}

.product h3, .product p, .product button {
    margin: .5em 0;
}

.product-desc {
    font-family: 'Playfair Display Italic';
    color: gray;
    text-align: center;
}

.product select {
    font-family: 'Dosis';
    margin: 10px 0;
    padding: 10px;
    background-color: white;
    color: gray;
    border: 1px solid gray;
}

.product button {
    font-family: 'Dosis';
    color: black;
    background-color: #FF9A8A;
    border: 4px double black;
    text-transform: uppercase;
    padding: 10px;
}