.page-container {
  max-width: 1200px;
  margin: 0 auto;
  background-image: url("https://i.pinimg.com/originals/b4/71/d6/b471d641c2fb84308dfb016cbf4ac6bb.gif");
  background-repeat: repeat;
}

.app-container {
  display: block;
  width: max-content;
  height: fit-content;
  margin: 0px auto;
  margin-top: 20px;
  padding: 60px;
  background-color: hsla(228, 45%, 76%, 0.588);
  border-radius: 20px;
  border-style: outset;
  box-shadow: 5px 10px rgba(39, 33, 66, 0.4);
}

body {
  background: black;
  font-family: "Tomorrow", sans-serif;
}

h1 {
  text-align: center;
  font-family: "Tomorrow", sans-serif;
  font-size: 48px;
  letter-spacing: 5px;
}

h2 {
  margin: 0 0 5px;
  font-size: 28px;
}

select {
  display: block;
  width: 100%;
  font-size: 18px;
  
  border-radius: 8px;
  padding: 10px;
}

.city {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  justify-content:space-evenly;
  font-family: "Tomorrow", sans-serif;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.city:last-child {
  border: none;
}

.date {
  opacity: 0.7;
}

.time {
  font-size: 48px;
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  text-align: right;
}

.time small {
  font-size: 24px;
  vertical-align: middle;
  line-height: 48px;
}

footer {
  font-size: 18px;
  color:hsl(228, 36%, 71%);
  background: linear-gradient(to bottom,#000000 0%, hsl(217, 5%, 20%) 100%); 
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
}

footer a {
  color:#5166bb;
  letter-spacing: 2px;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: 20px;
}

.grid-3-col-narrow {
  grid-template-columns: 1fr 2fr 2fr;
}

.backpage {
  color: blueviolet;
  display: flex;
  justify-content:left;
  margin-top: 15px;
  font-size: 22px;
  font-family: "Silkscreen", sans-serif; ;
}