@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
  margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', arial;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.h1 {
	font-size: 1.8rem;
	position: relative;
	color: black;
  margin: 20px;
  margin-left: 60%px;
  float: left;
}
.h1 span {
	color: crimson;
}
.powrot {
  margin-top: 30px;  
  margin-left: 20px;
}
.ramy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 100px;
}
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;


}


.galeria img {
  width: 300px;
  padding: 0;
  margin-bottom: 10px;
  
  border: 1px;
  border-radius: 5px;
;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.galeria img:hover {

  transition: 0.3s all linear;
  transform: scale(1.1);
}
/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
.galeria img {
  width: 100%;
}
}
