body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #3a5a40;
    color: #fff;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    margin-left: 3%;
    margin-bottom: 1%;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

header * {
    position: relative;
    z-index: 1;
}

.prodContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.produkt {
    min-width: 25%;
    height: 100%;
    display: flex;
    margin: 1%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.produkt img {
    height: 80%;
    width: 80%;
}

@media (max-width: 768px) {
    .prodContainer {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .produkt {
        width: 80%;
    }
}