/* font-family: 'Playfair Display', serif;
font-family: 'Prata', serif;
font-family: 'Roboto', sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    font-family: 'Roboto', sans-serif;
}

.intro {
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.intro h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 8em;
}

.intro h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #8a8686;
    font-weight: 500;
    text-align: center;
}
.intro span {
    color: #BA5356;
}

.about {
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 150px;

}
.about-image {
    width: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.about p {
    position: sticky;
    top: 30vh;
    width: 400px;
    height: fit-content;
    margin-left: 35px;
    font-size: .9em;
    letter-spacing: 0.5px;
    line-height: 1.4;
    /* transform: translateX(120%); */
}
.about p:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80px;
    height: 3px;
    background: #BA5356;
    border-radius: 30px;
}

@media only screen and (max-width: 1200px) {
    .about {
        flex-direction: column;
        align-items: center;
    }
    .about-image {
        height: 600px;
    }
    
    .about p {
        margin-left: 0;
        width: 440px;
        margin-top: 30px;
    }
}
.spacer {
    height: 100px;
    width: 100%;
}


/* Flickity */

.carousel {
    background: #EEE;
  }
  
  .carousel img {
    display: block;
    height: 200px;
  }
  
  @media screen and ( min-width: 768px ) {
    .carousel img {
      height: 400px;
    }
  }
  
  .arrow {
      fill: #BA5356;
  }
  .flickity-page-dots .dot {
    background: #BA5356 !important;
  }