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

body {
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
  text-align: center;
  background: #e6ff53;
}

.container{
    width: 800px;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.2);
}

h1{
  margin-bottom: 20px;
}

.image-wrapper {
  height: 12rem;
  width: 12rem;
  border-radius: 6px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1.6;
}
.image-wrapper img {
  height: auto;
  max-width: 100%;
  margin-top: 10px;
}

.shine {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0;
}
.shine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.shine:hover::before, .shine:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

