.container {
  height: 100%;
  display: grid;
  grid-gap: 2px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 150px auto 300px;
  grid-template-areas:
    "h h h h h h h h h h h h"
    "m m m m m m m m m m m m"
    "c c c c c c c c c c c c"
    "c c c c c c c c c c c c"
    "f f f f f f f f f f f f";
}

body {
      height: 100%;
      background-image: url("/images/WEB_BACKGROUND_Bike.jpg");
      height: 100%;
      
      background-position: center;
      background-size: cover;
}

.bg {
  background-color: black;
}

#logo {
  float: right;
  width: 200px;
}

.header {
  grid-area: h;
  padding: 10px;

  /* The image used */
  background-image: url("/images/HEADER_BANNER_BIKEREPAIR.jpg");
  /* opacity: 50%; */
   
  /* Full height */
  /* height: 100%; */
      
  /* Center and scale the image nicely */
  background-position: center;
  background-size: cover;
}

.nav {
grid-area: m;
background-color: black;
opacity: 90%;
}

/* -------------------Beginning Responsive nav bar----------------- */

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add an active class to highlight the current page */
.active {
  background-color: lightblue;
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a light background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: lightblue;
  color: black;
  transition: 0.5s;
}

/* Add a lightblue background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: lightblue;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ------------------------END dropdown ------------------------- */


.main {
  grid-area: c;
  color: black;
  background-color: rgb(185, 185, 185);
  margin: 125px;
  padding: 100px;
  display: inline-block;
  display: c;
  text-transform: inherit;
  text-align: justify;


}  

/* --------------Beginning Responive gallery grid---------------- */

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* -----------------END Responive gallery grid------------------- */

.footer {
  grid-area: f;
  color: white;
  padding: 2%;
  text-align: center;
}

.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 14px;
  transition: all 0.3s ease;
  color: white;
  font-size: 19px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: white;
  color: black;
}

.facebook {
  background: #3B5998;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.whatsapp {
  background-color: rgb(120, 185, 22);
  color: white;
}


@media (min-width: 750px) {
    body {
      background-color: rgb(37, 34, 29);
      color: rgb(255, 255, 255);
      font-size: larger;
      line-height: 1;
    }
    
    text {
      color: white;
    }

}

@media (max-width: 750px) {
  body {
      background-color: rgb(37, 34, 29);
      color: rgb(255, 255, 255);
      font-size: larger;
      line-height: 1;
    }
    
    text {
      color: white;
    }

}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 950px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 750px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
@media (min-width: 750px) {
  body .main, .header, .footer {
      font-size: larger;
      line-height: 1;
      transition: 0.5s;
    }
}

@media (max-width: 750px) {
  body .main, .header, .footer {
      background-color: gray;
      color: rgb(255, 255, 255);
      font-size: small;
      line-height: 1;
      margin: 25px;
      transition: 0.5s;
    }
    
    text {
      color: white;
    }

}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 750px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 750px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}