:root
{
    --blue: #D7007E;
    --blue-dark: #B30069;
    --logo: url("/app/themes/stemmentracker-child/images/logo.svg");
}

header .header-logo
{
    width: unset;
    height: 20px;
    aspect-ratio: 10.2;
}

.main-content
{
    gap: 3rem;
    display: flex;
    margin: 3rem 0px;
    flex-direction: column;
}

#introduction
{
    flex: 1;
}

#introduction p {margin: 0px}
#introduction a
{
    font-size: 16px;
    margin-top: 1rem;
}

#introduction span
{
    width: 100%;
    text-align: center;
}

#introduction a::before
{
    width: 0px;
    height: 0px;
    margin: 0px;
    background: none;
}

#explanation
{
    flex: 2;
    padding: 1rem;
    height: min-content;
    background-color: #FBF5DA;
    border-radius: var(--border-radius);
}

.explanation-row
{
    z-index: 0;
    display: flex;
    position: relative;
    align-items: center;
}

.explanation-row img
{
    width: 40px;
    padding: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: #FFFFFF;
    border: 2px solid #000000;
}

.explanation-row:not(:last-of-type)::before
{
    z-index: 0;
    left: 19px;
    content: "";
    z-index: -1;
    height: 100%;
    bottom: -100%;
    position: absolute;
    border-left: 2px dashed black;
    transform: translate3d(0, -50%, 0);
}

@media screen and (min-width: 768px)
{
    .main-content
    {
        flex-direction: row;
    }    
}