body {
    background: radial-gradient(
  circle at 10% 20%,
  rgba(55, 209, 255, 0.25) 0%,
  rgba(14, 31, 111, 0.4) 100%
);
    color: rgb(0, 0, 0);
    font-family: Consolas, Arial, sans-serif;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    background: #ffffff;
    padding: 30px;
    box-shadow: 5px 5px 8px rgb(133, 129, 134);
    border-radius: 10px;
}

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

h1 {
    text-align: center;
    font-size: 30px;
}

h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.date {
    opacity: 0.7;
}

.city {
    display: flex;
    font-weight: lighter;
    margin: 20px 0;
    padding: 20px 0;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
}

.time {
    font-size: 40px;
    font-weight: bold;
}

small {
    font-size: 25px;
    vertical-align: middle;
}

footer {
    text-align: center;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7)
}

a {
    text-decoration: none;
}