html {
  background-color: #415332;
  background-image: url("https://capnk.neocities.org/greentile.png");
  }
body {
  color: #f3f3f3;
  font-family: Verdana;
  margin: 3vw;
}
header {
  text-align: center;
}
.kriket {
  position: absolute;
  right: 0px
}
.flex-container {
  display: flex;
  flex-direction: row;
}
div.flex-container > div:hover {
  transform: rotate(10deg);
}
div.flex-container > div {
  margin: auto;
  margin-top: 25px;
  transition: transform .2s;
}
p {
  background-color: #f3f3f3;
  color: #415332;
  border-style: outset;
  border-width: 10px;
  margin: 50px;
  padding: 15px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
div.gallery-item {
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 10px solid #ccc;
  width: 550px;
  background-color: #f3f3f3;
  transition: transform .2s;
}
div.gallery-item:hover {
  transform: scale(1.05);
}

div.gallery-item img {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  object-fit: cover;
} 

div.gallery-item .desc {
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  color: #415332;
}
@media screen and (max-width: 600px) {
  .title {
    width: 90vw;
  }
  .kriket {
    display: none;
  }
  div.flex-container {
    flex-direction: column;
  }
  div.gallery-item {
  width: 80vw;
}
}