.main {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* header */

.header-section {
  background-color: #ffdae3;
  padding-bottom: 22px;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: #ffdae3;
  font-weight: 900;
}

.header-inner {
  background-color: #ff95ad;
  width: 100%;
  padding: 0 1px 30px;
}

.header-content {
  background-color: #ff4570;
  display: flex;
  padding-top: 20px;
  padding-left:60px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-title {
  font-size: 80px;
  margin: 0;
  padding-right:30px;
  padding-top: 30px;
}

.header-subtitle {
  z-index: 10;
  align-self: start;
  margin-top: 13px;
  padding-top: 50px;
  padding-right: 100px;
  font-size: 40px;
  text-align: center;
}

.header-subtitle:hover {
  text-shadow: none;
  color: #ff95ad;
  transition: 200ms;
}

.about-me-page {
  text-decoration: none;
  color: inherit;
}

.home {
  text-decoration: none;
  color: inherit;
}

/* header */

/* Header and Paragraph */

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 56px;
  margin-top: 72px;
  margin-left: 90px;
}

.page-header {
  color: #9747ff;
  font-size: 40px;
  margin-top: 100px;
}

.description {
  font-size: 20px;
  font-weight: 400;
  max-width: 40%;
}

/* Header and Paragraph */


/* main content */

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
  }
  
.logo-design-details {
    display: flex;
    align-items: center;
    max-width: 500px;
    font-size: 20px;
    margin: 0;
    font-weight: 100;
  }
  
  .world-heritage-logo {
    height: auto;
    display: flex;
    width: 40%;
  }


.brand-guide-container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 50px;
    margin-left: 90px;
  }
  
.brand-guide-details {
    display: block;
    max-width: 400px;
    font-size: 16px;
    margin: 0;
    font-weight: 100;
    padding-bottom: 10px;
  }

  .brand-guidelines-image {
    height: auto;
    width: 40%;
    padding-top: 10px;
    margin-left: 100px;
  }


  .brochure-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 70%;
    margin-top: 20px;
    margin-right: 100px;
    padding-top: 100px;
    align-self: center;
    }
    
    .box {
        width: 100%;
        display: inline-block;
        position: relative;
    }
    
    img {
    width: 100%;
    }
    
    .design-details {
        grid-column: span 2;
        display: flex;
        justify-content: flex-end;
        font-size: 20px;
        font-weight: 400;
        margin-top: 10px;
      }


      .business-system-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 15px;
        width: 70%;
        margin-right: 100px;
        padding-top: 100px;
        align-self: center;
        grid-template-areas:
            "letterhead envelope"
            "letterhead business-cards";
    }
    
    .business-system-box:first-child {
        grid-area: letterhead;
    }
    
    .business-system-box:nth-child(2) {
        grid-area: envelope;
    }
    
    .business-cards {
        grid-area: business-cards;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
        align-items: end;
        padding-left: 10px;
        padding-bottom: 50px;
    }

.postcard-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        width: 70%;
        padding-top: 10px;
        margin-right: 100px;
        align-self: center;
}


.business-system-details {
    font-size: 16px;
    font-weight: 100;
    text-align: left;
    grid-column: span 2;
}

/* main content */

/* arrow buttons */

.project-arrows {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 20px;
  font-size: 36px;
  color: #ff4570;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-arrows {
  align-self: center;
  margin-top: 146px;
  max-width: 1616px;
}

.arrow-icon {
    display: flex;
    align-items: stretch;
    gap: 28px;
    text-decoration: none;
    color: inherit;
  }
  

.arrow-caption {
  margin: auto 0;
  font-size: 27px;
  font-weight: 900;
}


.arrow-wrapper {
  position: relative;
  width: 70px;
  height: 50px;
}

.arrow-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
}

.arrow-hover {
  opacity: 0;
}

.arrow-wrapper:hover .arrow-hover {
  opacity: 1;
}

.arrow-wrapper:hover .arrow-default {
  opacity: 0;
}

/* arrow buttons */


/* footer */

.contact-footer {
  background-color: #ff95ad;
  margin-top: 56px;
  width: 100%;
  padding: 36px 70px 102px;
}

.contact-info {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  line-height: 45px;
  font-style: normal;
}

/* footer */
