body {
    background: #e1eacd;
    font-family: sans-serif;
}

h1 {
    text-align: center;
    font-family: sans-serif;
    font-size: 46px;
    color: #4a5568;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid #4a5568;
    width: 0;
    animation: typewriter 2s steps(40, end) forwards,
    blink 0.75s step-end infinite;
}

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

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

.container {
    max-width: 600px;
    margin: 60px auto;
    background: white;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    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);
    color: #4a5568;
}

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

.date {
    opacity: 0.7;
}

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

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

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

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

