add bestellen.css for improved styling and update HTML files to include new stylesheet

This commit is contained in:
vista-man
2025-04-09 10:23:51 +02:00
parent a38eb5e7af
commit 226559eaea
7 changed files with 124 additions and 46 deletions

32
bestellen.css Normal file
View File

@@ -0,0 +1,32 @@
.item-container {
display: flex;
justify-content: space-between;
margin-top: 30px;
}
.item {
flex: 0 0 48%;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.item img {
max-width: 100%;
height: auto;
margin-bottom: 15px;
}
.item h5 {
margin-bottom: 10px;
}
.item p {
margin-bottom: 15px;
}
.item button {
width: 100%;
}