* {
  box-sizing: border-box;
}

html {
  user-select: none;
  overflow: hidden;
}

html body {
background: rgb(79,78,96);
background: -moz-linear-gradient(90deg, rgba(79,78,96,1) 0%, rgba(223,247,247,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(79,78,96,1) 0%, rgba(223,247,247,1) 100%);
background: linear-gradient(90deg, rgba(79,78,96,1) 0%, rgba(223,247,247,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f4e60",endColorstr="#dff7f7",GradientType=1);
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  position: relative;
  padding: 0;
  margin: 0;
}
div.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.gallery {
  margin: 5px;
  border: 0px solid #ccc;
  float: left;
  width: 25%;
  transition: width 0.3s;
}

div.gallery:hover {
  border: 0px solid #777;
  width: 27%;
}

div.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

div.gallerys {
  margin: 5px;
  border: 0px solid #ccc;
  float: left;
  width: 22%;
  transition: width 0.3s;
}

div.gallerys:hover {
  border: 0px solid #777;
  width: 25%;
}

div.gallerys img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
