body {
    margin: 0;
}

/* ===================================================================
 * # intro
 *
 * ------------------------------------------------------------------- */
 .s-intro {
    width: 100%;
    background-color: #fff;
    /*overflow: hidden;*/
    position: relative;
    min-height: 960px;
    min-width: 1024px;
  }

  .intro-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  /*.intro-content__top {
    height: 20%;
  }*/

  #first-line {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .letter-style1 {
    font-family: Cinzel-Regular;
    font-size: 5vw;
    letter-spacing: .6rem;
  }

  .letter-style2 {
    font-family: Andasia;
    font-size: 6vw;
    letter-spacing: .6rem;
  }

  #second-line p {
    text-align: center;
    font-family: MoonTime-Regular;
    font-size: 8vw;
    margin: -3.8vw 0 0 0;
  }

  #third-line p {
    text-align: center;
    font-family: Belleza-Regular;
    font-size: 2.3vw;
    margin: -1vw 0 1vw 0;
  }

  /*.intro-content__bottom {
    height: 20%;
  }*/

  #couple-names {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #couple-names span, #bottom_text_1 {
    font-family: Belleza-Regular;
  }

  #couple-names span {
    font-size: 5vw;
    letter-spacing: .6rem;
    margin: 2vw 0 2vw 0;
  }

  #couple-names img {
    height: 6vw;
  }

  .intro-content__images {
    display: flex;
    justify-content: center;
  }

  .intro-content__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 32%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .intro-content__image span{
    color: #fff;
    font-family: AbrilFatface-Regular;
  }

  #img1 {
    background-image: url("../images/1_crop.jpg");
  }
  #img2 {
    background-image: url("../images/2_crop.jpg");
    margin: 0 1% 0 1%;
  }
  #img3 {
    background-image: url("../images/3.jpg");
  }

  #bottom_text_1 {
    text-align: center;
    font-size: 2.3vw;
    letter-spacing: .4rem;
    margin: 0 0 2vw 0;
  }
/* -------------------------------------------------------------------
 * ## intro social
 * ------------------------------------------------------------------- */
 .intro-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    font-size: 2vw;
    line-height: 1.6rem;
    margin: 1vw 0;
    padding: 0;
    text-align: center;    
  }
  
  .intro-social a {
    color: rgba(0, 0, 0, 1);
  }
  
  .intro-social a:hover,
  .intro-social a:focus,
  .intro-social a:active {
    color: #ff0000;
  }
  
  .intro-social li {
    margin: 0 1.6rem 0 1.6rem;
  }
  
  .spinner {
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    transform-style: preserve-3d;
    text-align:center;
  }

  @keyframes spinner {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(-360deg);
    }
  }

  @media (max-width: 800px) {
    .letter-style1 {
      font-size: 5vh;
    }

    .letter-style2 {
      font-size: 6vh;
    }

    #second-line p {
      font-size: 8vh;
      margin: -3.8vh 0 0 0;
    }

    #third-line p {
      font-size: 2.3vh;
      margin: -1vh 0 2vh 0;
    }

    #couple-names span {
      font-size: 5vh;
      margin: 2vh 0 2vh 0;
    }

    #couple-names img {
      height: 6vh;
    }

    #bottom_text_1 {
      font-size: 2.3vh;
      margin: 0 0 2vh 0;
    }

    .intro-social {
      font-size: 1.5vh;
      margin: 1.5vh 0;
    }

    .intro-content__image span{
      font-size: 170px;
      margin-bottom: -40px;
    }

    .spin-month {
        font-size: 120px !important;
        margin-bottom: 10px !important;
    }
  }

  @media (max-width: 1250px)  and (min-width: 800px) {
    .intro-content__image span{
      font-size: 20vw;
      margin-bottom: -5vh;
    }

    .spin-month {
        font-size: 10vw !important;
        margin-bottom: 3vw !important;
    }
  }

  @media (min-width: 1251px) {
    .intro-content__image span{
      font-size: 250px;
      margin-bottom: -60px;
    }

    .spin-month {
        font-size: 160px !important;
        margin-bottom: 20px !important;
    }
  }