Szerkesztő:BarathéGábor/ÚjKezdőlapTeszt
Megjelenés
<style> .main-container {
display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; padding: 20px;
} .card {
width: 300px; background: white; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); overflow: hidden; text-align: center;
} .card img {
width: 100%; height: 150px; object-fit: cover;
} .card-title {
font-size: 18px; font-weight: bold; padding: 10px; background: #0078D7; color: white;
} .card-description {
padding: 10px; font-size: 14px; color: #333;
} </style>