html{
    background-color: ghostwhite;
    box-sizing: border-box;
}

.overlay, .header-button, .last{
    background-image: url("images/overlay.jpg");
    height: 100%;
}

.header-button{
    color: white;
    padding-right: 2%;
    padding-top: 1%;
}

.header-button:active{
    cursor: pointer;
    transform: scale(1.25);
}

.main-header{
    color: greenyellow;
    width: 100%;
    height: 10em;
} 

.nav-features{
display: flex;
flex-direction: column;
align-items: center;
}

.nav-features-2{
    list-style: none;
    text-transform: uppercase;
    font-size: 2em;
 }

 .nav-features-3{
    list-style: none;
    text-transform: uppercase;
}

 .cart-image{
    width: 30px;
    height: 30px;
 }

.main-container{
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(250px, 300px) );
    justify-content: center;
    gap: .5%;
    padding: 3% 0;
}

.product-container:nth-child(2n) {
    background-color: rgb(233, 233, 240);
  }

.product-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4% 0em;
    background-color: rgb(219, 219, 224);
    padding-bottom: 10%;
}

.motor-pic{
    max-width: 200px;
    max-height: 200px;
    margin-top: 5%;
    border-radius: 2.5%;
    padding-bottom: 0;
}

.product-description{
    text-transform: uppercase;
    font-weight: 800;
}

.product-price{
    font-weight: bold;
}

.add-it{
    text-transform: uppercase;
    background-color: rgb(37, 27, 222);
    width: 200px;
    height: 50px;
    color: white;
    border-radius: 5%;
    transition: .2s ease-in-out 0s;
}

.add-it:hover{
    cursor: pointer;
    transform: scale(1.25);
}

.last {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: yellowgreen;
    padding: 2% 0;
  }