* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .contenedor {
    color: #000000;
    text-align: center;
  }
  .cartel {
    width: 50px;
    height: 50px;
    padding: 5px 0px 2px 0px;
    text-align: center;
    display: inline-block;
    margin: 1px;
    border: 1px solid #000000;
    border-radius: 5px;
  }
  .cartel>div{
    font-size: 14px;
    font-family: 'Chela One', sans serif;
    animation: fade 3s;
    line-height: 15px;
    margin-top: 5px;
  }
  .cartel>div>h3 {
    margin-top: 1px;
    font-size: 8px;
    font-weight: normal;
    color: grey  ;
  }
  .h3 {
    bottom: 0;
    margin: 0 auto ;
  }
  .contenedor {
    margin-top: 3%;
  }
  .contenido {
    width: 100%;
    margin: 0px;
    border: 0px solid black;
    z-index: 10;
  }

  .numeros {
    font-family: 'Chela one', sans-serif;
    font-size: 10px;
    color: #000000;
    transition: .3s;
    animation-name: fade;
    animation-duration: 3s;
  }
  .responsivo1 {
    display: inline-block
  }
  .responsivo2 {
    display: inline-block
  }
  @media (max-width: 450px) {  
    .contenedor {
      margin-top: 15%;
    }
    .banner {
     margin-bottom: 30px; 
    }
    .cartel {
      height: 60px;
      width: 60px;
    }
    .cartel>div{
      font-size: 20px;
      font-weight: bold;
    }
    .cartel>div>h3 {
        margin-top: 1px;
        font-size: 10px;
        font-weight: bold;
        color: grey  ;
    }


    .box-round-wrap {
        position: relative;
        max-width: 60vw;
    }

  }

.imagen-evento{
    width: 100%;
    /* margin-left: 3px; */
}


  @keyframes fade {
      0%   {
        opacity: 0;
    }
      30%   {
        opacity: 0;
    }  
      100% {
        opacity: 1;
    }
  }