/* .under-construction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--Colors-Yellow-Light);
    height: 90vh;
    min-height: 800px;

    .construction-content {
        display: flex;
        height: 800px;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        flex-shrink: 0;
        text-align: center;

        .construction-image {
            width: 396px;
            height: 396px;
        }

        .construction-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;

            br {
                margin: 0;
            }

            .construction-title {
                font-size: 40px;
                font-weight: 600;
                line-height: 56px;
                color: var(--Colors-Violet-800);
            }

            .construction-description {
                font-size: 16px;
                font-weight: 600;
                line-height: 24px; 
                color: var(--Colors-Violet-900);
            }
        }

        .default-button {
            align-self: center;
        }
    }

    @media screen and (max-width: 540px)  {
        .construction-content {
            .construction-image {
                width: 360px;
                height: 360px;
            }

            .construction-description {
                .construction-title {
                    font-size: 32px;
                    line-height: 44px;
                }
            }
        }
    }
} */

.under-construction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--Colors-Yellow-Light);
    height: 90vh;
    min-height: 800px;
}
.under-construction .construction-content {
    display: flex;
    height: 800px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    text-align: center;
}
.under-construction .construction-content .construction-image {
    width: 396px;
    height: 396px;
}
.under-construction .construction-content .construction-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.under-construction .construction-content .construction-text br {
    margin: 0;
}
.under-construction .construction-content .construction-text .construction-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    color: var(--Colors-Violet-800);
}
.under-construction .construction-content .construction-text .construction-description {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--Colors-Violet-900);
}
.under-construction .construction-content .default-button {
    align-self: center;
}
@media screen and (max-width: 540px) {
    .under-construction .construction-content .construction-image {
        width: 360px;
        height: 360px;
   }
    .under-construction .construction-content .construction-description .construction-title {
        font-size: 32px;
        line-height: 44px;
   }
}
