/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: orange;
  color: white;
  font-family: helvetica;
}

h1 {
  background-color: white;
  color: black;
  font-family: helvetica;
  text-align: center;
  padding: 5px;
}

.button {
  background-color: white;
  color: black;
  text-align:center;
  padding: 5px;
  display: inline-block;
  justify-content: center;
  align-items: center;
}

.sidebar {
  position: absolute;
  left: 1;
  width: 10em;
}

#navigation1 {
  position: absolute;
  left: 1;
  width: 10em;
}

#navigation1 h2 {
  text-align: center;
}

#navigation2 {
  position: absolute;
  right: 0;
  width: 10em;
}

#navigation2 h2{
  text-align: center;
}

.content {
  margin-left: 10em;
  margin-right: 10em;
  background: white;
  color: black;
  font-family: helvetica;
  padding: 5px;
}

.content h2 {
  text-align: center;
}

#header {
  background: white url(/trainspotting.jpg);
  height: 20em;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  
}

#banner-content {
  margin-bottom: 1em;
  margin-left: 1em;
  text-align: left;
  justify-content: flex-start;
}

#banner-content2 {
  margin-bottom: 1em;
  margin-right: 1em;
  background: white;
  color: black;
  padding: 5px;
  display:flex;
  text-align: right;
  position: absolute;
  right: 0;
  
}

.giantheads {
  font-size: 50px;
}
