@font-face {
  font-family: futura;
  src: url('futura.ttf');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #FFF5D0;
  font-family: futura;
  text-transform: uppercase;
  text-align: center;
  color: #333333;
}

.heart-container {
  /* padding-top: 25vh; */
}

.heart-container .heart-image {
  width: 192px;
  margin: 0 24px;
}

.heart-container .name {
  font-size: 29px;
  position: relative;
  top: 33px;
  width: 200px;
  font-weight: bold;
  letter-spacing: 7px;
  color: #444;
}

.heart-container .name.sathya {
  text-align: right;
}

.heart-container .name.goje {
  text-align: left;
}

.heart-container .name.sathya-goje {
  white-space: nowrap;
  letter-spacing: 5px;
  width: 280px;
  display: none;
}

@media only screen 
and (max-width : 736px) { 
  .heart-container .name {
    display: none;
  }

  .heart-container .name.sathya-goje {
    display: block;
  }
}

.background-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 600px;
  height: 100vh;
  margin: auto;
  transform: translate3d(0, 0, 0);
}

.content-layer {
  transform: translate3d(0, 100vh, 0);
  width: 608px;
  margin: auto;
  max-width: 100%;
}

.content-layer .border-cut {
  background: linear-gradient(-45deg, #ffffff 16px, transparent 0), linear-gradient(45deg, #ffffff 16px, transparent 0);
  -webkit-filter: drop-shadow(0px -5px 2px rgba(0,0,0,0.15));
  background-position: left-bottom;
  background-repeat: repeat-x;
  background-size: 32px 32px;
  content: " ";
  display: block;
  width: 100%;
  height: 32px;
  display: none;
}

.content-layer .content {
  background-color: #fff;
  text-align: center;
  box-shadow: 0 3px 5px rgba(0,0,0,0.15);
  position: relative;
  top: -6px;
  /* padding: 50px; */
}

.scroll-message {
  padding-bottom: 60px;
}

.scroll-message .scroll-arrow {
  font-size: 32px;
}

.content > section {
  display: block;
  min-height: 200px;
  font-weight: bold;
  padding: 100px 60px;
}

.content h1 {
  letter-spacing: 5px;
  line-height: 1.2;
  margin: 0 0 .75em;
  color: #b18f3a;
  font-size: 1.7em;
}

.content > section > p {
  margin: 10px auto;
  font-size: 1.2em;
}

.content > section > span {
  font-weight: normal;
}

.content > section .event-icon {
  width: 32px;
  margin: 16px;
}

.content > section .separator {
  width: 50px;
  height: 0;
  border-bottom: 4px solid #333;
  margin-bottom: 2em;
}

.content > section > a.button {
  text-decoration: none;
  font-weight: lighter;
  border: 1px solid #b18f3a;
  padding: 5px 10px;
  margin-top: 31px;
  color: #b18f3a;
  transition: 200ms ease-in-out;
}

.content > section > a.button:hover {
  background-color: #b18f3a;
  color: #fff;
}

.content > section.married-section {
  padding-top: 200px;
}

.content > section.married-section .event-icon {
  width: 64px;
  margin: 16px auto 35px;
}

.content > section.married-section .married-section-emoji {
  line-height: 60px;
  font-size: 2em;
}

.content > section.date-section .date-section-time {
  font-weight: normal;
}

.content > section.rsvp-section {
  min-height: 70vh;
  background-color: #E7E9EC;
  padding: 60px;
}

.content > section.rsvp-section h1 {
  transform: scale3d(1.5, 2, 1);
  color: #333;
}

.content > section.rsvp-section .separator {
  border-color: #b18f3a;
}

.content > section.rsvp-section .event-icon {
  padding: 50px 0;
  width: 200px;
}

.content > section.rsvp-section > a.button {
  color: #333;
  border-color: #333;
}

.content > section.rsvp-section > a.button:hover {
  color: #fff;
  background-color: #333;
}

.content > section.contacts-section h1 {
  color: #333;
}

.content > section.contacts-section .separator {
  border-color: #b18f3a;
}

.content > section.contacts-section a[href^="tel:"] {
  text-decoration: none;
  color: #333;
  font-weight: normal;
  font-size: 0.85em;
  margin-top: 4px;
}

.contact-card {
  border-radius: 5px;
  padding: 5px 10px 0 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin: 18px;
}

.contact-card .contact-card-avatar {
  width: 64px;
  margin-right: 6px;
  padding: 7px;
}

.contact-card .contact-card-details {
  text-align: left;
}

.contact-card .contact-card-name {
  letter-spacing: 2px;
}








/* iron flex layout classes */

.layout.horizontal,
.layout.vertical {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}

.layout.inline {
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
}

.layout.horizontal {
-ms-flex-direction: row;
-webkit-flex-direction: row;
flex-direction: row;
}

.layout.vertical {
-ms-flex-direction: column;
-webkit-flex-direction: column;
flex-direction: column;
}

.layout.wrap {
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}

.layout.no-wrap {
-ms-flex-wrap: nowrap;
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap;
}

.layout.center,
.layout.center-center {
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.layout.center-justified,
.layout.center-center {
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
}

.flex {
-ms-flex: 1 1 0.000000001px;
-webkit-flex: 1;
flex: 1;
-webkit-flex-basis: 0.000000001px;
flex-basis: 0.000000001px;
}

.flex-auto {
-ms-flex: 1 1 auto;
-webkit-flex: 1 1 auto;
flex: 1 1 auto;
}

.flex-none {
-ms-flex: none;
-webkit-flex: none;
flex: none;
}

