* {
  box-sizing: border-box;
}

body {
  margin:0;
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

/* Header/Title */
.header {
  padding: 10px;
  text-align: center;
  background: white;  
  color: #F08080	
}

.par {
  border: 1px solid black;
  padding: 10px;
  width: 200px;
  height: 200px;
  text-align: justify;
}

.header h1 {
  font-size: 40px; 
}		

/*Highlights active menu*/
.active {
  background-color: #4CAF50;
  color: white;
}

/* Style the top navigation bar */
.menuBar {
  overflow: hidden;
  background-color: #FF7F50;
}

/* Style the menuBar links */
.menuBar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.menuBar a:hover {
  background-color: #ddd;
  color: black;
}

/* Style dropdown menu, buttons and texts on the buttons */
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.menuBar a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create two equal columns that floats next to each other */
.leftcolumn {   
  float: left;
  width: 50%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

.rightcolumn {
  float: left;
  width: 50%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

/* Style image */
.imageDubai {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 100px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

@media screen and (max-width: 100%) {
  .menuBar a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .menuBar a.icon {
    float: right;
    display: block;
  }
}

/* Responsive layout for menu bar items */
@media screen and (max-width: 100%) {
  .menuBar.responsive {position: relative;}
  .menuBar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menuBar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .menuBar.responsive .dropdown {float: none;}
  .menuBar.responsive .dropdown-content {position: relative;}
  .menuBar.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  .menuBar a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .menuBar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .menuBar.responsive {position: relative;}
  .menuBar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menuBar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .menuBar.responsive .dropdown {float: none;}
  .menuBar.responsive .dropdown-content {position: relative;}
  .menuBar.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .menuBar a {
    float: none;
    width: 100%;
  }
}
