body{background-color:rgb(241, 239, 239);height:100%;font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.item {
  max-width:300px;
  text-align: center;
  height:fit-content;
  margin:0.3em
}

.flexcontainer{
  display:flex;
  width:100%;
  justify-content: center;
  flex-wrap:wrap
}
.flex{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
img{
  max-width:100%;
  transition: all .2s ease-in-out;
}
img:hover{
  transform:scale(1.2);
  
}
@media (max-width: 760px) {
    img {width:100%;height:auto}
  .flexcontainer{
    flex-direction: column;
  }
  
}
.pixel{
  width:auto;
  height:auto;
  padding: 2px;
}
/*this is for animations page*/

.container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin:auto;
  }
  
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
 .vid{
  width:600px;
  align-self: center;
 }
 @media (max-width: 600px) {
  .vid {width:100%;height:auto}

}