/* Estilos generales */
.contenedor {
    /* estilos del contenedor */
}

/* Estilos para dispositivos con pantalla pequeña (menos de 600px) */
@media only screen and (max-width: 600px) {
    .contenedor {
        /* redefine los estilos del contenedor para pantallas pequeñas */
    }
}
.encabezado {
    display: flex;
    background-color: green;
    color: white;
    height: 150px;
    align-items: center;
    font-family: 'Arial Rounded MT Bold', sans-serif; /* Fuente redondeada. Asegúrate de tener esta fuente o cambia a una de tu elección */
}

.sector {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alineación a la izquierda */
}

.sector.logo {
    flex: 0 0 20%;
    justify-content: flex-start; /* Alineación del logo a la izquierda */
}

.sector.texto-central {
    flex: 0 0 60%;
    text-align: center;
    font-size: 24px; /* Ajusta según lo que consideres adecuado */
}

.sector.reloj {
    flex: 0 0 20%;
    flex-direction: column; /* Para que la hora y la fecha se muestren verticalmente */
}

.sector img {
    max-height: 100%;
    max-width: 100%;
}

.analog-clock {
    width: 50px;
    height: 50px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.hand {
    position: absolute;
    bottom: 50%;
    transform-origin: 50% 100%;
    left: 50%;
    transform: translateX(-50%);
}

.hour, .minute, .second {
    background: white;
}

.hour {
    width: 2px;
    height: 20%;
}

.minute {
    width: 1.5px;
    height: 25%;
}

.second {
    width: 1px;
    height: 30%;
}

/* Estilos del reloj digital */
.digital-clock {
    text-align: center;
    font-size: 20px;
}

.date {
    text-align: center;
    font-size: 16px;
}