h1 {
    text-align: center;
    margin: auto 20px;
  }
  img {
    max-width: 100%;
    display: block;
  }

  /* CSS FLEXBOX 1 */
  .titulo{
    justify-content: center;
    display: flex;
    margin: 100px auto 0 auto;
    flex-wrap: wrap;
    border-radius: 15px;
    background-color: #f2f2f2;
    max-width: 80%;
  }
  #background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

  .banner{
    display: flex;
    justify-content: center;
    margin: 45vh auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .banner h1 span{
    color: #f2f2f2;
  }
  .banner h1 a img#cell{
    display: none;
  }
  @media (max-width: 600px) {
    .banner h1 a img#cell{
        display: flex;
        border-radius: 50%;
        width: 200px;
        margin: 30px auto;
      }
      .banner h1 span{
        display: none;
      }
  }
  .flex {
    display: flex;
    background-color: rgb(242, 242, 242, 0.2);
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 80%;
    margin: 10px auto;
    margin-bottom: 80px;
  }
  a.content-ctt{
    display: flex;
    flex-direction: row;
    margin: 10px;
  }
  a.content-ctt:hover{
    color: #000;
    text-decoration: underline;
  }

  a > img.mini-logo-ctt{
    width: 30px;
    margin: 0 5px 0 0;
  }
  .flex > div {
    border-radius: 15px;
    background-color: #f2f2f2;
    flex: 1 1 300px;
    margin: 10px;
    transition: transform .7s;
  }

  .flex div.scale:hover{
    transform: scale(1.02);
  }

  .flex > div > a > img{
    border-radius: 10px;
    padding: 15px;
  }
  .scale .close{display:none;}
    .scale:target img{
        margin: auto;
        max-height: 90%;
    }
    .scale:target p{
        /*position: fixed;*/
        /*left: 25%;*/
        /*bottom: 0px;*/
        /*height: 10%;*/
        display: none;
    }
        .scale:target{
            justify-content:center;
            z-index: 3000;
            width: 100vw;
            height: 100vh;
                position: fixed;
                top: 0vh;
                bottom: 1vh;
                left: 0vw;
                right: 1vw;
                margin: 0;
                border-radius: 0;
        }
        .scale:target .close{
            display: flex;
            position: fixed;
            top: 20px;
            right: 20px;
            height: 30px;
            width: 30px;
            border-radius: 50%;
            /*background-color: #60c8f9;*/
            margin: 0;
        }
        .scale:target .close span{

            margin: 0;
        }
        .scale:target .close span a:hover{
            text-decoration: none;
            color: red;
        }
        .scale:target.scale:hover{
            transform: none;
        }
  .flex > div > video{
    max-width: 100%;
    display: block;
    border-radius: 10px;
    padding: 15px;
  }
  h3,p{
    flex-wrap: wrap;
    margin: 10px;
  }

