/* display flex */
.left {
    display: flex;
    justify-content: left;
    align-items: center;
}
.right {
    display: flex;
    justify-content: right;
    align-items: center;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* container */
.container {
    padding-left: 100px;
    padding-right: 100px;
}

/* presets */
section {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    border-bottom: 1px solid #00000013;
}
.section-heading {
    font-size: 22px;
    color: var(--color-primary);
    text-align: center;
    font-family: 'Rufina', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}
.section-tag {
    font-size: 50px;
    font-weight: 500;
    color: var(--color-dark);
    text-align: center;
    font-family: 'Playfair', sans-serif;
}

/* positions */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}