@charset "utf-8";
/* CSS Document */

.clock-container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

.clock {
            font-size: 4rem;
            font-weight: bold;
            color: #333;
            margin: 1rem 0;
        }

.date {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 1rem;
        }

.location {
            font-size: 2rem;
            color: #888;
        }

@keyframes gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }