
/* #region ▼ Line */
.dress-code-line {
    height: 2px;
    width: 80%;
    background-color: var(--text-color);
    margin-top: 2.5vh;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s linear;
}

.dress-code-line.animate {
  transform: scaleX(1);
}
/* #endregion ▲ End Line */

/* #region ▼ Dress Code Section */
#dress-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2vh;
}

#dress-code-heading {
    font-family: var(--font-licorice);
    color: var(--text-color);
    font-size: 70px;
    margin-top: 2.5vh;
}


#dress-code-paragraph-one {
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
    margin-top: 2vh;
    font-family: var(--font-playfair);
    text-transform: uppercase;
}
#dress-code-paragraph-two {
    color: var(--text-color);
    margin-top: 1vh;
    text-align: justify;
    max-width: 80%;
}

.dress-code-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    width: 80%;
}

.dress-code-image {
    height: 35vh;
    background-size: cover;
}

.dress-code-description {
    text-align: justify;
    width: 80%;
}

#dress-code-conclusion {
    margin-top: 5vh;
    text-align: justify;
    width: 80%;
    color: var(--text-color);
}
/* #endregion ▲ End Dress Code Section */