
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,300,700);

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
  width: 100%;
  margin: 0 auto;
  background-color: #1c1c1c;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  font-size: 16px;
}
body .background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(pexels-min-an-1004014.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  opacity: 0.4;
}
html .main,
body .main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 0 25px;
}
html .main #content,
body .main #content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  min-height: 24px;
  height: 100%;
  position: relative;
  text-align: center;
  top: 25%;
}
html .main #content .title,
body .main #content .title {
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  body .main #content .title {
    font-size: 4rem;
  }
}
html .main #content p,
body .main #content p,
body a {
  color: #e6dbae;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  margin: 0 auto;
  padding: 25px 0;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  body .main #content p {
  font-size: 1.5rem;
  }
}
html .main #content p:last-child,
body .main #content p:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 3em auto;
  padding: 0;
  letter-spacing: 0.1rem;
}
html .main #content p:last-child > a,
body .main #content p:last-child > a {
  text-decoration: none;
  color: inherit;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
html .main #content p:last-child > a:hover,
body .main #content p:last-child > a:hover {
  color: #fff;
}
html .main #content section,
body .main #content section {
  color: #fff;
  margin: 0 auto;
  line-height: 24px;
  font-size: 1rem;
  font-weight: 700;
}
html .main #content section ul,
body .main #content section ul {
  list-style-type: none;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 1rem;
}
html .main #content section ul li,
body .main #content section ul li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 1rem;
  width: 6rem;
}
html .main #content section .timenumbers,
body .main #content section .timenumbers {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8rem;
  margin: 0 auto;
  text-align: center;
}
html .main #content section p.timedescription,
body .main #content section p.timedescription {
  font-size: 0.8rem;
  font-variant: small-caps;
  line-height: 1.8rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: 0;
}

@media screen and (min-width: 768px) {
  body .main #content section ul li {
    padding-left: 2rem;
  }
  body .main #content section ul li {
    display: inline-block;
    margin-right: 2rem;
  }
}


/* --- --- */


body .particletext {
  text-align: center;
  position: relative !important;
  display: inline-block !important;
}
body .particletext.hearts > .particle {
  opacity: 0;
  position: absolute;
  background-color: #cc2a5d;
  -webkit-animation: hearts 3s ease-in infinite;
          animation: hearts 3s ease-in infinite;
}
body .particletext.hearts > .particle:before, body .particletext.hearts > .particle:after {
  position: absolute;
  content: "";
  border-radius: 100px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cc2a5d;
}
body .particletext.hearts > .particle:before {
  transform: translateX(-50%);
}
body .particletext.hearts > .particle:after {
  transform: translateY(-50%);
}


@-webkit-keyframes hearts {
  0% {
    opacity: 0;
    transform: translate(0, 0%) rotate(45deg);
  }
  20% {
    opacity: 0.8;
    transform: translate(0, -20%) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%) rotate(45deg);
  }
}
@keyframes hearts {
  0% {
    opacity: 0;
    transform: translate(0, 0%) rotate(45deg);
  }
  20% {
    opacity: 0.8;
    transform: translate(0, -20%) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%) rotate(45deg);
  }
}

a.more {
    font-variant: small-caps;
    font-weight: 700;
    text-decoration: none;
    position: absolute;
    background: transparent;
    display: inline-block;
    bottom: 0;
    left: -5rem;
    padding: 0.5rem;
    width: 10rem;
    text-align: center;
    margin-left: 50%;
    letter-spacing: 0.125rem;
}