* {
    margin: 0px;
    font-family: avenir next;
}

a {
    text-decoration: none;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
}

.searchbar {
    height: 40px;
    width: 300px;
    border: 0px;
    border-radius: 20px;
    line-height: 20px;
    font-size: 20px;
    padding: 5px;
}

.searchbutton {
    background-color: darkred;
    color: white;
    height: 40px;
    width: 40px;
    border: 0px;
    border-radius: 20px;
    margin-left: 5px;
}

.addToCart {
    background-color: darkred;
    color: white;
    border: 0px;
    border-radius: 20px;
    font-size: 16px;
    height: 40px;
    width: 100px;
    transition: transform 0.3s;
}

.produkt{
    background-color: grey;
margin: 8px;
padding: 4px;
text-align: center;
color: white;
width: 200px;
height: auto;
}

.addToCart:hover {
    transform: scale(1.1);
}

.addToCart:active {
    background-color: white;
    color: darkred;
    transition: background-color 0.5s, color 0.5s;
}

.store {
    display: flex;
    flex-wrap: wrap;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
}

.container h2 {
    margin-bottom: 40px;
}

.container form input[type="submit"] {
    background-color: black;
    color: white;
    width: 150px;
    height: 50px;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.container form input[type="submit"]:hover {
    background-color: #333;
}

.inputText {
    height: 20px;
    border-radius: 10px;
    border: 2px solid black;
}

.commercial {
    background-color: grey;
    color: white;
    width: 100px;
    height: 10vh;
    margin: 10px;
    padding: 5px;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 5px;
    font-size: 16px;
}

.search-icon {
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
}

.search-button {
    background: none;
    border: none;
    color: black;
    font-size: 25px;
}

/* Media Queries für Mobilgeräte */
@media (max-width: 600px) {
    .banner {
        flex-direction: column;
        min-height: 150px;
        padding: 10px;
    }

    .searchbar {
        width: 80%;
        font-size: 16px;
    }

    .searchbutton {
        height: 35px;
        width: 35px;
    }

  .produkt{
        background-color: grey;
    margin: 8px;
    padding: 4px;
    text-align: center;
    color: white;
    width: 45vw;
    height: auto;
    }
  
    .addToCart {
        width: 80px;
        font-size: 14px;
    }

    .container {
        margin-top: 20px;
    }

    .container form input[type="submit"] {
        width: 120px;
        height: 40px;
        font-size: 18px;
    }

    .commercial {
        width: 80px;
        height: 8vh;
    }
}

