header{
    display:flex; 
    flex-wrap: nowrap;
}
.icon{
    display: flex;
    flex:1 1 auto;
}
.search{
    background-color: #e5e5e5;
    width: 75%;
    height: 35px;
    margin:0px 20px 0px 20px;
    border-style: solid;
    border-color: #9b9b9b;
    border-radius: 30px;
    border-width: 2px;
    text-align: left;
    padding: 5px 10px 5px 10px;
}
.delivery{
    background-color: #e5e5e5;
    margin-inline: -15px;
    margin-top: 40px;
    padding-left: 15px;
}

body{
    font-family: sans-serif;
    font-size: medium;
}

.c-container {
    width: 100%;
    padding: 20px;
    
}

.section {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
}

.cookware-image {
    width: 100%;
    height: auto;
}
/* cant get image to resize???*/

.cookware-text {
  flex: 1;
  flex-direction: column;
  display: flex;
  text-align: center;
  align-items: left;
  padding: 40px;
  background-color: #2a7ddc;
  color: white
}

button{
    font-family:  sans-serif;
    font-size: smaller;
    font-weight: 600;
    text-align: center;
    color: black;
    background-color:white;
    border-radius: 15px;
    border-color: #ffffff;
    padding: 1px 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, padding 0.3s ease, border 0.3s ease;
}

button:hover{
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 30px;
    box-shadow:  0 0 3px black;
    cursor: pointer;
}

/* keep at bottom */
@media (max-width: 600px){
    .icon{
        display:none;
    }
}