* {
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
html {
  background: #101010;
}
body {
  position: absolute;
  background: radial-gradient(circle, #000 0%, #222 100%);
  max-width: 100vw;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}
.holder {
  width: 100%;
  max-width: 400px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
img {
  display: block;
  max-width: 100%;
}
.text {
  color: #d5c495;
  position: absolute;
  bottom: 20px;
  width: 100% ;
  text-align: center;
  padding-bottom: 5px;
}
.text a {
  color: #d5c495;
  text-decoration: none;
}
.text a:hover {
  color: #e2d6b6;
}
