#übersicht { display: flex; flex-direction: column; align-items: center; } .container { display: flex; flex-direction: row; justify-content: center; flex-wrap: wrap; margin: 10px 0px; padding: 0px 10px; } .container .product { width: 300px; display: flex; flex-direction: column; justify-content: center; padding: 10px; align-items: center; border: solid #006a4e; background-color: #b8d5cd; border-radius: 40px; } .container .product img { width: 90%; height: auto; max-height: 300px; border: solid #006a4e; border-radius: 40px; overflow: hidden; object-fit: fill; } .container .product p, h3 { margin: 5px 0px; } .container .product .title { font-size: 20px; } .container .product .shopIn { display: flex; flex-direction: row; justify-content: start; vertical-align: middle; } .container .product .shopIn span,button{ display: flex; vertical-align: middle; margin: 10px 10px; font-size: 30px; } .container .product .shopIn button>span.buttonModifier { text-align: center; margin: 0px; padding: 3px; } .container .product .shopIn button{ border-radius: 30px; border-color: #006a4e; background-color: #2e856e; width: 40px; height: 40px; text-align: center; padding: 0px 10px; color: #b8d5cd; font-size: 30px; } .container .product .size { font-size: 20px; } .container .product .description{ display: flex; flex-direction: column; justify-content: center; text-align: justify; height: 150px; font-size: 20px; }