body {
  background: #594F3E¨;
  color: #fff;
}

.main {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    position: absolute;
}

.main:before {
    content: '';
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    position: absolute;
    background-image: url('/img/cover.jpg');
    opacity: .6;
    background-size: cover;
	 filter: grayscale(1) blur(12px);
	 opacity: .3;
	 
}

@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  
}

.header {
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.dot {
  color: #4FEBFE;
}

.text {
  text-align: center;
  margin: 18px;
  margin-bottom: 0;
  font-family: 'Muli', sans-serif;
  font-weight: normal;
  
}

.signature {
    text-align: right;
    font-size: 15px;
    margin-top: 0;
    opacity: .8;
}

.icons {
  text-align: center;
  margin-top: 16px;
}

.icons i {
  color: #00091B;
  background: #F4CF00;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #F4CF00;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #F4CF00;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
  
}


.flip-card {
  background-color: transparent;
  position: absolute;
  top: -30px; 
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 380px;
  height: calc(100% - 100px);
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: calc(100% - 72px);
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.flip-card-front {
  background-image: url('/img/flyerpapelfront.jpg?m=aug');
}

.flip-card-back {
  background-image: url('/img/flyerpapelback.jpg?m=aug');
  transform: rotateY(180deg);
}