header
{
   width: 100%;
   height: 92vh; 
   position: relative;
   background-color: rgb(124, 124, 124);
   font-family: serif;
}

.title
{

    padding-bottom: 25px;
    text-align: center;
    width: 100%;
    background-image: linear-gradient(180deg, transparent 65%, var(--background-color-transparent) 70%, var(--background-color) 90%);
    color: var(--title-color);
    font-size: 4rem;
    font-family: serif;
}

header .title
{
    position: absolute;
    bottom: 0;
    padding-top: 80%;
}

.title.dark
{
    background-image: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.12) 70%, black 90%);
}

.title .divider
{
    height: 30px;
}

.headerimage
{
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}   

.divider
{
    border-top: var(--title-color) 1px solid;
    border-image: linear-gradient(to right, transparent 0%, var(--title-color) 50%, transparent 100%) 1;
    position: relative;
}

.divider .square
{
    height: var(--sdata-size);
    width: var(--sdata-size);

    border: var(--title-color) 1px solid;    
    border-top: none;
    border-left: none;

    transform: rotate(45deg);

    position: absolute;
    left: calc(50% - var(--sdata-size) * 0.5);
    top: calc(calc(var(--sdata-size) * -1) * 0.5 - 1px);
}

h2
{
    font-family: serif;
    color: var(--title-color);
    font-size: 1.75rem;
    text-align: center;
}

.section-header
{
    margin: 1rem;
    margin-top: 2.5rem;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.section-header h2
{
    margin-left: 2%;
    margin-right: 2%;
}

.section-header::before
{
    content: "";
    background: linear-gradient(to left, var(--title-color), rgba(0,0,0,0));
    height: 1px;
    width: 100%;
    max-width: calc(1280px / 2);
}

.section-header::after
{
    content: "";
    background: linear-gradient(to right, var(--title-color), rgba(0,0,0,0));
    height: 1px;
    width: 100%;
    max-width: calc(1280px / 2);
}
