body {
    font-family: "Roboto", sans-serif;
    background-color: #f9f7fe;
}

h1 {
    text-align: center;
    margin-top: 0;
    font-size: 44px;
}

h2 {
    margin: 0;
    font-size: 34px;
}

select {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    box-shadow:  rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border-radius: 5px;
}

footer {
    text-align: center;
    font-style: italic;
    font-size: 14px;
}

a {
    font-weight: 800;
    color: black;
}

a:hover {
    color: red;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    display: block;
    background-color: #ffffff;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 10px;
    opacity: 0.9;
}

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

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

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

.time {
    font-size: 44px;
    font-weight: 600;
}

.time small {
    font-size: 22px;
    vertical-align: middle;
}

.clock-body {
    width:250px;
    height:250px;
    background-color: #adadc9;
    border-radius:50%;
    margin: 0 auto;
    position: relative;
}

.hour {
    font-size:14px;
    font-weight:800;
    position:absolute;
}

.hour-12 {
    top: 5px;
    left:50%;
    transform: translateX(-50%);
}

.hour-3 {
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.hour-6 {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.hour-9 {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.hour-hand-container,
.minute-hand-container,
.second-hand-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hour-hand .hand {
    width: 5px;
    height: 70px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hour-hand .arrow {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.minute-hand {
    position: relative;
}

.minute-hand .hand {
    width: 3px;
    height: 100px;
    background-color: black;
    position:absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%)rotate(180deg);
}

.minute-hand .arrow {
    font-size: 15px;
    font-weight: 800;
    color:black;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 90px
}

.second-hand .hand {
    width: 1px;
    height:85px;
    background-color: black;
    position: absolute;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
}

.updated-city-page {
    text-align: center;
    max-width: 400px;
}

.updated-city-page h1 {
    display: none;
}

.updated-city-page select {
    display: none;
}

.updated-city-page a {
    text-decoration: none;
    background-color: #adadc9;
    padding: 10px;
    border-radius: 5px;
    font-weight: 400;
}

.updated-city-page a:hover {
    color:#ffffff;
    background-color: #65659a;
}

.updated-city-page .city{
    display: block;
    margin: 0 auto;
    border: none;
}
.updated-city-page .date {
    margin-bottom: 40px;
    font-size: 14px;
}

.updated-city-page .time {
    margin-top: 40px;
    margin-bottom: 40px;
}
