body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  color: black;
}
.header {
  overflow: hidden;
  background-color: #0e0f12;
  display: flex;
}
.header a {
  font-family: "IBM Plex Sans", sans-serif;
  align-items: center;
  justify-content: center;
  text-align: justify;
  float: left;
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  border-radius: 4px;
  margin: 0 7px 0 7px;
}
.header a:hover {
  text-decoration: none;
}
.navigation {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  white-space: nowrap;
}
.navigation a.logo {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin: 0 10px 0 20px;
}
.nav {
  list-style: none;
  padding: 0;
}
nav.account {
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: justify;
  padding: 0 30px 0 0;
}
.nav-item {
  display: contents;
  color: #fff;
  text-align: center;
}
.nav-link-active {
  color: #ff7676;
}
.nav-link {
  color: #fff;
}
.nav-link:after {
  display: flex;
  content: '';
  position: inherit;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.nav-link:hover:after {
  transform: scaleX(1);
  text-decoration: underline;
  transform-origin: bottom left;
}
#notification {
  color: red;
  font-weight: bold;
}
h1 {
  font-size: 40px;
  text-align: center;
}
h2 {
  font-size: 30px;
  text-align: center;
}
h3 {
  margin: 0 0 5px 0;
  font-size: 25px;
  text-align: left;
}
aside {
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
  margin-top: 10px;
}
#updated {
  width: 100%;
}
.flights {
  width: max-content;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto 150px auto;
  padding: 0 50px 50px 50px;
  gap: 10%;
}
.text-field {
  line-height: 1.5;
  min-width: 375px;
}
.text-title {
  font-weight: bold;
}
.pictures {
  display: grid;
}
.picture-title {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}
.live-link {
  text-decoration: underline;
  color: red;
}
img {
  border: 1.5px solid #0e0f12;
  max-height: 330px;
}
hr {
  width: 30%;
  margin: 0 auto 0 auto;
  border: 1px solid white;
}
.emptylist {
  margin-top: 5%;
}