@font-face {
    font-family: 'Avocado Creamy';
    src: url('tipografias/Avocado Creamy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;}
    
    
    
    #myVideo {
      opacity: 0.35;
        width: 100%;
    }
    
    #texto {
    font-family: 'Avocado Creamy';
      position: fixed;
      color: white;
      z-index: 999;
      font-size: 500%;
    }
    
    
    .loader {
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    
    .loader.hidden {
        animation: fadeOut;
        animation-duration: 2s;
       /* animation-delay: 3s, 3s; */
        animation-fill-mode: forwards;
    }
    
    @keyframes fadeOut {
        100% {
            opacity: 0;
            visibility: hidden;
        }
    }
    
    .thumb {
        height: 100px;
        border: 1px solid black;
        margin: 10px;
    }