* {
  box-sizing: border-box;
  font-family: Ubuntu, sans-serif;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
}

#map {
  width: 800px;
  height: 400px;
}

/* The wrapper contains all of the page's content besides the footer, which is pushed to the bottom of the page */

.navbar {
  padding: 5px;
  margin: 0;
}

.svg-container {
  align-content: center;
}

/* The styles for the parallax */
.hero {
  position: relative;
  height: 250px;
  padding: 30px;
  margin: 0;
  background: black;
  background-image: url("../images/flight.jpg");
  background-attachment: fixed;
  background-position: bottom center;
  background-size: cover;
}

.hero h1 {
  margin-top: 200px;
  font-size: 0.1rem;
  animation: title 1.2s forwards linear;
  color: white;
  background-color: rgb(128, 122, 122);
  overflow: hidden;
  display: inline-block;
  padding: 10px;
  font-weight: bold;
  font-family: arial;
  opacity: 15%;
  font-size: 200px;
}

.hero p {
  font-size: 2rem;
  opacity: 0;
  animation: subtitle 1.2s forwards linear;
  animation-delay: 1.2s;
}

/* input placeholder color changes */
.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #007bff;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #007bff;
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #007bff;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #007bff;
}

.btn {
  color: #ffffff;
  background-color: #007bff;
  border-color: transparent;
  align-content: center;
}

.btn-success-color {
  color: #ffffff;
  background-color: #007bff;
  border-color: transparent;
  align-content: center;
}

.btn.btn-success:hover {
  color: #ffffff;
  background-color: #007bff;
  border-color: transparent;
  align-content: center;
}

.button {
  color: #ffffff;
  background-color: #007bff;
  border-color: transparent;
  align-content: center;
}

/* media queries which will only be activated at specific screen sizes */
@media (max-width: 800px) {
  #table-area td {
    font-size: 1em;
  }
}

@media (max-width: 500px) {
  #table-area thead {
    display: none;
  }

  .form-inline {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .form.form-inline {
    padding: 5px 10px;
  }
}
