body {
    margin: 0;
    padding: 0;
    background: url('../img/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 1));
}

.logo img {
    width: 70%;
    height: auto;
}

.contenido {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
    font-size: 120%;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.etiquetas {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.etiquetas div {
    align-items: center;
    margin-right: 10px;
    font-size: 24px;
}

.contador div span {
    margin-right: 5px;
}

.contenido h1 {
    margin-bottom: 10px;
}

.contenido p {
    margin-bottom: 20px;
}

/* Estilos para el texto justificado al centro */
.tituloTxt {
    text-align: center;
    margin-top: 200px;
    font-size: 80px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
}
.promocionTxt{
    font-size: 20px;
    color: white;
}

.esloganTxt{
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* Estilos para el footer */
footer {
    background-color:rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Media query para pantallas más pequeñas */
@media only screen and (max-width: 600px) {
    .logo img {
        width: 30%;
        height: auto;
    }
    .tituloTxt  {
        text-align: center;
        margin-top: 200px;
        font-size: 30px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        color: white;
    }

    .promocionTxt{
        font-size: 12px;
        color: white;
    }
    
    .esloganTxt{
        font-size: 12px;
        font-weight: bold;
        color: white;
    }
  }