body {
    background-color: bisque;}

h1 {
    text-align: center;
    font-size: 34px;
    font-family: sans-serif;
  }     
h2{
    text-align: left;
    margin: 0 0 10px;
    font-size: 28px;

  }  

select {
    display: block;
    width: 100%;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
    margin-left: 20px;
  }

  .container {
    display: block;
    border: 2px solid;
    border-radius: 10px;
    padding: 30px;
    background: white;
    max-width: 600px;
    margin:60px 0;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
}
  .city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2) ;
    padding: 20px 0 ;

  }
  .city:last-child {
    border-bottom: none;
  }
  .date {
    opacity: 0.6;
    
  }
  .time {
    font-size: 40px;
    font-weight: bold;
  }
  footer{
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);  
  }