*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
    font-family: montserrat;
    background-color: #0a0a0a;
}

.Joes_Logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -15px;
    padding-top: 20px;
    width: 350px;
}

nav{
    background: #000000;
    height: 80xp;
    width: 100%;
}



nav ul{
    display: flex;
    justify-content: center;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 20px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}


/* For Home Page */

.homePage {
    display:inline-block;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: auto;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 70%;
    margin: auto;
    padding-top: 40px;
  }

  @media only screen and (max-width: 1000px) {
    .slideshow-container {
      width: 100%;
      padding-top: 0px;
    }
  }

  .slideshow_photos {
    border: 10px solid #DD4814;
 }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  }

/* Parts Section */

  .h2_parts{
    color: white;
    font-weight: 50;
    margin-top: 40px;
    text-align: center;
  }

  div.gallery {
    margin: 20px;
    border: 1px solid #DD4814;
    width: 180px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
    color: white;
  }

.parts_gallery {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    justify-content: center;
}
/* For Contact Page */

.contactPage {
  display:none;
  color:#DD4814;
}

/* For Bike Gallery */

.bike_gallery {
  display: none;
  flex-flow: wrap;
  width: 100%;
  justify-content: center;
}

  div.bikeCard {
    margin: 20px;
    border: 2px solid #DD4814;
    width: 22%;
  }
  
  div.bikeCard:hover {
    border: 2px solid #DD4814;
  }
  
  div.bikeCard img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
    color: white;
  }

  /* For About Page */
  .aboutPage {
    display:none;
    color:#DD4814;
  }