/* Reset the margin, padding, and setting the background image for each page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styling for the heading on each page */
.header {
  padding: 30px;
  text-align: center;
}

.header h1 {
  font-size: 60px;
}

/* Styling the Navigaton Bar */
.nav-bar {
  overflow: hidden;
  background-color: black;
}

.nav-bar a {
  float: right;
  text-decoration: none;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 57px;
  text-transform: uppercase;
}

/* Styling the dropdown nav under Destinations */
.dropdown {
  float: right;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 20px;
  text-transform: uppercase;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0px;
  display: inline-block;
}

.nav-bar a:hover,
.dropbtn:hover .dropbtn {
  background-color: white;
  color: black;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 230px;
  box-shadow: inherit;
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* The little Japan flag floating left on the nav bar */
.flag-icon {
  float: left;
}

.flag-icon img {
  float: left;
  width: 30px;
  height: 20px;
  padding: 0;
  margin: 0;
}

/* Styling the content on each page */
.content {
  width: 100%;
  padding-top: 50px;
}

/* Styling all the images and headers main content */
.img-info {
  width: 50%;
  float: right;
}

.img-info h2 {
  padding: 20px 0px 0px 30px;
  font-family: arial;
  font-size: 50px;
  line-height: 44px;
}

.img-info h3 {
  padding: 20px 0px 0px 30px;
  font-family: arial;
  font-size: 30px;
  line-height: 44px;
}

.img-info p {
  padding: 0px 30px 20px;
  font-family: arial;
  font-size: 16px;
  line-height: 24px;
}

/* Styling the pictures floating left in flex-box */

.picture {
  width: 50%;
  float: left;
}
.img-main {
  float: left;
}

/* Styling the form on Contact page */
.contact-form {
  width: 250px;
  padding-top: 50px;
  margin-left: 40%;
  box-sizing: border-box;
}

input,
textarea,
select,
button {
  width: 250px;
  padding: 10px;
  margin: 10px;
  box-sizing: border-box;
}

/* Set the size of the div element that contains the map */
#map {
  height: 400px;
  width: 100%;
}

/* Flights Styling */
.hawaiian-airlines {
  text-decoration: none;
  font-size: 24px;
  text-align: center;
  margin-top: 100px;
}

table {
  border-collapse: collapse;
  width: 50%;
  padding: 0;
  margin: 100px 0;
}

table td,
th,
tr {
  border: 2px solid white;
  padding: 10px;
  margin: 10px;
  background-color: black;
  color: white;
}
