body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif; /* Asegurándonos de que la fuente sea legible */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Color negro con opacidad del 30% */
    z-index: 1;
}

.background {
    background-image: url('img/tecni.jpg');
    background-size: cover;
    background-position: center;
    flex-grow: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.countdown-container, header, footer {
    position: relative;
    z-index: 2;
}

header {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.logo {
    max-height: 130px;
    margin: 20px;
}

footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.logo-footer {
    max-height: 100px;
    margin: 20px;
}

.countdown-container h1 {
    margin: 0;
    padding-top: 50px;
    padding-bottom: 20px; /* Aumenta el espacio entre el título y el contador */
    text-align: center;
    color: #fff;
    font-size: 35px; /* Tamaño más grande para el título */
    letter-spacing: 1px; /* Espaciado entre letras */
    font-weight: bold; /* Hacer el texto más grueso */
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 40px;
    color: #fff;
}

#countdown p {
    margin: 10px 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

#countdown span {
    font-weight: bold;
    font-size: 48px; /* Números más grandes y gruesos */
}

#countdown label {
    display: block;
    font-size: 16px; /* Texto más pequeño para Días, Horas, etc. */
    color: #ccc; /* Color más claro para los textos */
}
