@import "config";
@import "menu";
@import "reviewing";


img{
    max-width: 90%;
    height: auto;
}

a{
    text-decoration: none;
}


.word {
    text-align: center;
}



/* Work/projects
  .projects {
    display: flex;
    width: 100%;
    margin: 0 auto;
    grid-gap: 0.7rem;
     grid-template-rows: repeat(10);
     grid-template-rows: (4);
  }*/

/*Thumbnail Styles*/

.thumbnails{
    margin-right: -10px;
}

.thumbnails-group-img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  float: left;
  width: auto;
  padding-right: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  justify-content: space-around;
}

@media only screen and (min-width: 300px){
    .thumbnails-group-img {
        flex-basis: auto;
    }
}

/*@media only screen and (min-width: 960px){
    .thumbnails-group-img {
        flex-basis: 33.33%;
    }
}

@media only screen and (min-width: 1280px){
    .thumbnails-group-img {
        flex-basis: 25%;
    }
}*/

.thumbnails img {
    transition: all .2s ease-in-out;
}

.thumbnails:hover img {
    opacity: .6;
    transform: scale(.92);
}

.thumbnails img:hover {
    opacity: 1;
    transform: scale(1) rotate(2deg);
    box-shadow: 0 0 7px rgb(0,0,0, .5);
}

@import "mobile";