body {
	background-image: url("/assets/img/bg02.jpg");
	background-color: #ffffff;
	background-repeat: no-repeat;
}

@media only screen and (min-width: 1265px) {
body { 
	background-image: url("/assets/img/bg.jpg"); 
	background-color: #ffffff;
	background-repeat: no-repeat;
    }
}
main {
  margin: auto;

}

main div {
  padding: 5px;
  max-width: 300px;
  margin: auto;
  max-height: 300px;

}

.inline-block-center {
  text-align: center;
}
.inline-block-center div {
  display: inline-block;
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.item {
  position: relative;
  overflow: hidden;
}
.item img {
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.item2 {
  position: relative;
  overflow: hidden;
}
.item2 img {
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}