.container {
  display: flex;
  flex-direction: column;
}

* {
  font-family: Georgia, 'Times New Roman', Times, serif;
}
/* ---------------- NAVBAR ---------------- */
.navbar {
  display: flex;
  justify-content: stretch;
  height: auto;
  padding-top: 20px;
  background-color: black;
}
.navbar > .company {
  flex: 1;
  padding-left: 50px;
}
.company > h1 {
  color: white;
  font-size: 26px;
}
.navbar > .pages {
  flex: 3;
  display: flex; 
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
.pages > a {
  padding-left: 30px;
  padding-right: 30px;
  text-decoration: none;
  color: white;
}

/* ---------------- HEADER ---------------- */
.header {
  position: relative;
  top: 0px;
  left: 0px;
}
.header > img {
  width: 100%;
  height: auto;
}
.title {
  color: white;
  font-size: 100px;
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0px;
  text-align: center;
}

/* ---------------- MAIN ---------------- */
.main {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  justify-content: flex-end;
  align-items: center;

  background-color: white;
}

.main > div {
  width: 80%;
  justify-content: space-between;
  /* background-color: red; */
}
.date {
  border-style: solid;
  border-width: thin;
  padding-left: 40px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 20px;
  background-color: #E0E0E0;
}
.shows > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: solid;
  border-width: thin;
}
.show > img {
  flex: 1;
}
.show > .show-info {
  flex: 4;
  padding: 30px;
}
.show > button {
  flex: 1;
  background-color: orange;
  color: white;
  font-size: 18px;
  border-width: thin;
}

button {
  height: 50px;
}

/* ---------------- FOOTER ---------------- */

.footer {
  display: flex;
  justify-content: space-around;
  background-color: black;
  color: white;
  padding: 50px;
}
.map > img {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.footer > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}