:root {
    --color-fondo: #000000;
    --color-reloj: #00008b; /* Azul profundo */
    --color-borde: gold;
    --color-marca: silver;
    --fuente-manuscrita: 'Dancing Script', cursive;
}

body {
    background-color: var(--color-fondo);
    display: grid;
    place-items: center;
    height: 100vh;
    margin: 0;
    font-family: var(--fuente-manuscrita);
}

.reloj-container {
    border: 10px solid var(--color-borde);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    background-color: var(--color-fondo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#reloj {
    color: var(--color-reloj);
    font-size: 4em;
    font-weight: bold;
}

#marca-y-fecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.marca {
    color: var(--color-marca);
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 2px;
}

.fecha {
    color: var(--color-marca);
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 5px;
}