* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing:	border-box;
	        box-sizing:	border-box;
  }

html {
	font-size: 62,5%;
  }

body {
	width: 100%;
	min-height: 100vh;
	background:	#004080;
	display: -ms-grid;
	display: grid;
	place-content: center;
  }

.title {
	text-align: center;
	color: #fff;
	padding: 2rem 0rem;
	font-size: calc (20px + (80 - 20) *	((100vw - 300px) / (1600 - 300)));
  }

.gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
  }

.gallery a {
	width: 20rem;  /* 35rem; */
	height: 20rem; /* 20rem; */
	margin: 2rem;
	border-radius: 0.5rem;
	overflow: hidden;
	-webkit-box-shadow: 0 .3rem .5rem rgba(0,0,0,.8);
	        box-shadow: 0 .3rem .5rem rgba(0,0,0,.8);
  }

.gallery a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }

.gallery a img:hover {
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
  }

@media (min-width: 884px) {
  body::after {
    content: "";
    position: fixed;
    bottom: 0;
    right: 0;
    width: 800px;
    height: 275px;
   /* background-image: url("../img/back_bottom.gif"); */
    background-size: cover;
    z-index: -1;
  }
 }