body {
    font-family: 'Roboto', sans-serif;
}

.hero {
    background-image: url('background.jpg'); /* Imagen de fondo personalizada */
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 55%);/* Filtro oscuro */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.about, .event-details {
    max-width: 800px;
    margin: auto;
}

#contador h2 {
    font-size: 2rem;
}

.icon {
    color: #0d6efd; /* Color principal de Bootstrap */
}


.info-banner {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 1.1rem;
}
.info-banner a {
    color: #007bff;
    text-decoration: none;
}
.info-banner a:hover {
    text-decoration: underline;
}