* {
    margin: 0;
    padding: 0;
    }

body {
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    background-color: lightcyan;
}

header {
    font-size: 50px;
    padding: 40px;
}

header a {
    text-decoration: none;
    color: #000000;
}

.navbar {
    display: flex;
    padding: 16px;
    font-family: sans-serif;
    color: white;
  }
  
  .navbarItems {
    display:flex;
  }
  
  .navbarRight {
    margin-left:auto;
  }

.right {
    float: right;
}

.left {
    float: left;
}

.clearfix {
    clear: both;
}

/* .container {
    
} */

.above {
    background-color: lightgreen;
    padding: 5px;
    border-bottom: 5px solid darkgreen;
}

.menu {
    cursor: pointer;
    float: left;
}

.filter {
    display: flex;
    padding: 10px;
    justify-content: center;
    border-top: 5px solid #006400;
    border-bottom: 5px solid #006400;
}

.filterItem {
    display: flex;
    padding: 5px; 
}

.filter .num {
    padding-top: 15px;
    margin-left: 2px;
    color: #ff0000;
}

.search {
    width: 50%;
    height: 23px; 
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropBtn {
    background-color: #90ee90;
    color: #ffffff;
    cursor: pointer;
}

.dropContent {
    display: none;
    position: absolute;
    width: 150px;
    background-color: #90ee90;
}

.dropContent a {
    color: #000000;
    padding: 10px, 15px;
    font-size: 20px;
    text-decoration: none;
    display: block;
    border: 2px solid #006400;
}

.dropContent a:hover {
    color: greenyellow;
}

.dropdown:hover .dropContent {
    display: block;
}


.content {
    margin: 10px auto;
    padding: 0 1em;
    width: 90%;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
 }
  
 .card {
    margin: .5rem .25em;
    text-align: center;
    font-family: arial;
    border: 2px solid black;
    flex: 0 1 24%;
    box-sizing: border-box;
 }

 .card img {
    width: 100px;
    height: 150px
 }

 .price {
    color: grey;
    font-size: 22px;
  }
  
  .card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  .card button:hover {
    opacity: 0.7;
  }

  footer {
    padding-top: 20px;  
    bottom:0;
    left:0;
    width: 100%;
    background-color: lightgreen;
    padding: 5px;
    text-align: center;
}

@media screen and (min-width: 40em) {
    .cards {
        display: flex;
        flex-wrap: wrap;
    }
 
    .card {
        max-width: calc(50% -  1em);
    }
}

@media screen and (min-width: 60em) {
    .card {
        max-width: calc(25% - 1em);
    }
}

@media screen and (min-width: 52em) {
    .centered {
        max-width: 52em;
    }
}