.content {
    max-width: 1920px;
    margin:auto;
}

.logo {
    width: 90%;
    float: center;
}

.aboutDesign{
padding-left: 18%;
padding-right: 30%;
padding-top: 3%;
}

.aboutDesign > h1{
    background-color: #00c7e6;
    padding-left: 8%;
    font-size: 1.5em;
}

.aboutProduction {
    padding-left: 35%;
padding-right: 15%;
padding-top: 1%;
}
    
.aboutProduction > h2{
    background-color: #ffcf00;
    font-size: 1.5em;
    text-align: right;
    padding-right: 8%;
}
    

.about > p{
    padding-left: 9%;
}

.general{
padding-left: 4%;
padding-right: 15%;
padding-top: 3%;
}

.general > h1{
   background-color: #00c7e6; 
    font-size: 2em;
}


hr.main {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-width: 5px;
  width: 80%;
}

hr.section {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-width: 2px;
  width: 80%;
}


.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  text-align: center;
    font-size: 0.8em;
}

/* CODE FOR RESPONSIVE TOP NAV BEGINS HERE */
/* CSS bit */
 /* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
    margin: auto;
    width: 95%;

}

/* Style the links inside the navigation bar */
.topnav a {
    max-width: 50%;
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
    position: relative;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1em;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ffcf00;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #00c7e6;
  color: black;
}


/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
} 

/* Media Query bit */
 /* When the screen is less than 1000 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: 600px) {
  .topnav a:not(:first-child) {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: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} 


 
/* CODE FOR RESPONSIVE TOP NAV ENDS HERE */


/* CODE FOR RESPONSIVE PORTFOLIO GRID BEGINS HERE */

/* Center website */

.main {
  max-width: 1000px;
  margin: auto;
}


.row {
  margin: auto;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 4px;
 overflow: hidden;
}

/* Create four equal columns that floats next to each other */
.column-text {
  float: left;
  width: 40%;
    margin: auto;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 0.5%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 400px) {
  .column {
    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: 400px) {
  .column {
    width: 100%;

  }
}

/* CODE FOR RESPONSIVE PORTFOLIO GRID ENDS HERE */
