 @import 'https://fonts.googleapis.com/css?family=Reenie+Beanie';

body {
background: #000000;
background: -webkit-linear-gradient(top left, #000000, #A80108);
background: -moz-linear-gradient(top left, #000000, #A80108);
background: linear-gradient(to bottom right, #000000, #A80108);
}
 .postit {
   line-height: 1;
   text-align: center;
   box-shadow: 10px 10px #111111;
   width: 275px;
   margin: 25px;
   min-height: 300px;
   max-height: 300px;
   padding-top: 15px;
   position: relative;
   border: 1px solid salmon;
   border-top: 10px solid salmon;
   font-family: 'Reenie Beanie';
   font-size: 3em;
   display: inline-block;
   background: -webkit-linear-gradient(-45deg, salmon 81%, salmon 82%, salmon 82%, salmon 100%);
 }

.postit:nth-child(even) {
   border: 1px solid gray;
   border-top: 10px solid gray;
   background: -webkit-linear-gradient(-45deg, gray 81%, gray 82%, gray 82%, gray 100%);
}

.blurry-text {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}

.box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;
}

.rotate-scale-up {
	-webkit-animation: rotate-scale-up 0.65s linear both;
	        animation: rotate-scale-up 0.65s linear both;
}
@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0);
  }
  100% {
    -webkit-transform: scale(2) rotateZ(180deg);
            transform: scale(2) rotateZ(180deg);
  }
}
@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
            transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg);
  }
}
.heart-container {
  margin: 0 auto;
  margin-top: 100px;
  position: relative;
  text-align: center;
}
.heart {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    background: red;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    animate: 1s infinite;
}
.heart:before, .heart:after {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 100%;
    position: absolute;
    display: block;
    background: red;
}
.heart:after {
    top: -50%;
    right: 0;
}
.heart:before {
    top: 0;
    left: -50%;
}
.heart-message {
  position: relative;
  top: -200px;
  z-index: 99999;
  width: 200px;
  height: 100px;
  color: white;
  margin: 0 auto;
  width: 200px;
  font-family: 'Reenie Beanie';
  font-size: 3em;

}

.pulsing-heart {
	-webkit-animation: pulsing-heart 1s linear both infinite;
	        animation: pulsing-heart 1s linear both infinite;
}
@-webkit-keyframes pulsing-heart {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes pulsing-heart {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
  and (orientation : landscape) { .wrapper { width: 1024px;}}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
  and (orientation : landscape) { .wrapper { width: 768px;}}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
  and (orientation : landscape) { .wrapper {
    width: 375px;
    grid-template-columns: 1fr;
    }}
