body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1d;
    color: #ffffff;
    text-align: center;
}

.countdown-container {
    padding: 20px;
    border: 2px solid #ff00ff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Ajuste de la imagen de fondo */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('subte-1.jpg') no-repeat center top; /* Centrado en la parte superior */
    background-size: contain; /* Cambiado de cover a contain para ajustar mejor sin cortes */
    z-index: -1;
    filter: brightness(0.7); /* Ajuste de brillo para que los elementos sean visibles */
}

.title {
    font-size: 3rem;
    color: #ff00ff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.time {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-size: 3rem;
    color: #00ccff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.label {
    font-size: 1rem;
    color: #cccccc;
}
