* {
    box-sizing: border-box;
  }
  
  html,
  body {
    font-family: 'Space Mono', monospace;
    font-size: .9em;
    line-height: 1.5;
    color: #222222;
    background-color: #ffffff;
    text-align: left;
    overflow: auto;
  }

   img.logo {
    width: 50%;  
    height: auto;
    padding: 20px;
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 7s infinite linear;
}

@-webkit-keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}



   .header {
       display: inline-block;
       margin: 0 auto;
       height: auto;
   }

  .container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px;
  }

  img.drumming {
    width: 40%;
    height: auto;
    justify-content: left;
    padding-left: 15px;
    padding-bottom: 15px;
}

    h2 {
        padding-left: 20px;
        margin-top: 0;
        color: #3bf5ba;
    }

  p {
    padding-left: 20px;
    padding-right: 20px;
    margin: 5px 0;
    text-align: left;
    line-height: 20px;
  }

  a {
      text-decoration: none;
      color: #db21e7;
  }

  a:hover {
    color: #3bf5ba;
}

i {
    font-size: .8em;
}

.emoji {
    font-size: 1.5em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    height: auto;
}

#photo {
width: 50%;
height: auto;
padding: 5px;
}



.footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 20px;
}



  /* =================================
  Media Queries 768px
==================================== */

@media (min-width: 768px) {
    html,
    body {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: auto;
    }

    .header {
        display: inline-block;
        margin: 0 auto;
        height: auto;
    }

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

h2 {
    width: 40%;
}

img.drumming {
    width: 30%;
    height: auto;
}

#photo {
    width: 25%;
    height: auto;
    padding: 5px;
    }
  

  }
  
  /* =================================
    Media Queries 1024px
  ==================================== */
  
  @media (min-width: 1024px) {
    html,
    body {
      width: 100%;
      max-width: 1500px;
      margin: 0 auto;
      overflow: auto;
      height: 100%;
      cursor: ne-resize;
    }


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

    img.drumming {
        width: 15%;
        height: auto;
        justify-content: left;
        padding-left: 15px;
        padding-bottom: 15px;
    }

      p.about {
          width: 90%;
        
      }

      .gallery {
          justify-content: left;
          padding-left: 20px;
      }

      #photo {
        width: 12%;
        height: auto;
        }


      


}
