@charset "utf-8";
/* CSS Document */

 .feed{
    max-width: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
  }
  .feed h4{
    font-size: 18px;
  }
  .feed a{
    color: black;
    text-decoration: none;
  }
  .feed h4 img{
    height: 30px;
    position: relative;
    top: 8px;
    left: -5px;
  }
  #instafeed{
    margin: 0 auto;
    display: grid;
    width: 80%;
    grid-template-columns: auto auto;
  }
  #instafeed a{
    width: 100%;
  }
  .grid-item{
    text-align: center;
  }
  .grid-item img{
    width: 90%;
  }
  @media only screen and (max-width: 800px) {
  
    
        #instafeed{
            grid-template-columns: auto;
			 justify-content: center;
        }
        .grid-item img{

          max-width: 400px;
        }
		 }