body {
	background-image: url(https://images.pexels.com/photos/733857/pexels-photo-733857.jpeg);
	background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  align-content: center;
  background-size: cover;
}
.infor {
  background-color: rgb(174, 137, 203);
  border-radius: 40px;
  padding: 10px;
  margin-bottom: 10px;
}

h1 {
  margin-top: -5px;
}
.container {
  position: relative;
  max-width: 500px;
  display: inline-block;
  margin: 30px;
}
.gallery {
  margin-left: 60px
}

.image {
  display: inline-block;
  width: 100%;
  border-radius: 50px;
  box-shadow: 10px 10px 5px gray; 
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background: linear-gradient(rgba(132, 142, 211, 0.56), rgb(179, 158, 95)) ;
  border-radius: 50px;
}

.container:hover .overlay {
  opacity: 1;
}


.text {
  background-color: rgb(148, 94, 189);
  font-size: 15px;
  position: absolute;
  padding: 15px;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.bottomText {
  padding: 40px;
  height: 40px;
  display: inline-block;
}
.bismarck {
  clip-path: circle(50%)
}
