/* some style */

.center {
  text-align:center ! important;
}

.reveal .slides .fancyfont {
  color: #e65c5c ! important;
  text-transform:none;
  font-family: 'Pacifico', cursive;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, 0 -4px 3px rgba(0, 0, 0, 0.9);
}

.reveal {
  height:100vh;
  width:100vw;
}

.reveal p,
.reveal li {
  text-align:left;
}

.falling-background .cake img {
  width: 100%;
  height: 100%;
}
.falling-background {
  left: 0px;
  top: -100px;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.falling-background > * {
  margin-left: 30px;
  width: 100px;
  height: 100px;
  position: relative;
  transform: translateZ(0);
  animation-name: falling;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.falling-background > :nth-child(odd) {
  animation-delay: 4s;
}
.falling-background > :nth-child(3n+2) {
  animation-delay: 2s;
  animation-duration: 3s;
  transform: rotate(-90deg);
}
.falling-background > :nth-child(3n+1) {
  animation-duration: 3s;
  transform: rotate(-20deg);
}
div#bg-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  min-width: 100vh;
  min-height: 100vw;
  background: radial-gradient(#ffffff, rgba(0, 0, 0, 0));
}
@keyframes falling {
  0% {
    top: -10%;
    opacity: 0.5;
  }
  70% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.1;
  }
  100% {
    top: 100%;
    transform: rotate(180deg);
    opacity: 0;
  }
}

.reveal h1 {
  font-size:2.5em;
}
h1.wc {
  color: #e65c5c ! important;
  font-family: 'Pacifico', cursive;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, 0 -4px 3px rgba(0, 0, 0, 0.9);
}

.reveal h1 {
  text-transform:none;
}
