.world-clocks .city {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Kalın bir yazı tipi kullanmak istiyorsanız */
}

.world-clocks .time, .world-clocks .date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}


.world-clocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.clock {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    width: calc(20% - 40px); /* 5'li görünüm için her bir saat için alan ayarlama */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #eee; /* Arka plan rengi */
    transition: box-shadow 0.3s ease;
}

.clock:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.city {
    font-weight: bold;
    font-size: 20px;
}

.time {
    font-size: 1.5em;
    color: #333;
}

.date {
    color: #666;
}



/* Mobil cihazlar için özel stil */
@media (max-width: 767px) {
    .world-clocks .city {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 14px;
}
	
	.clock {
        width: calc(50% - 40px); /* Mobilde 2'li görünüm için ayarlama */
    }
	
}