body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  background-image: url("../images/bg.jpg");
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  /* Font  */
  font-family: sans-serif;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 36px;
}

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

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

.container {
  max-width: 600px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

.city {
  display: flex;
  margin: 10px 0;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.city-date {
  display: flex;
  flex-direction: column;
}

.flag {
  height: 30px;
  width: 30px;
  margin-left: 12px;
}

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

.date {
  opacity: 0.7;
}

.time {
  font-size: 48px;
  font-weight: bold;
  color: rgb(50, 48, 48);
}

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

footer {
  text-align: center;
  font-size: 18px;
  color: whitesmoke;
}

a,
.github {
  color: #ff4cff;
  font-weight: bold;
}

@media (max-width: 800px) {
  body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-evenly;
  }

  h1 {
    font-size: 24px;
  }

  .time small {
    font-size: 16px;
  }

  .time,
  h2 {
    font-size: 16px;
  }

  .date {
    font-size: 12px;
  }
}
