﻿#title {
    background-color: var(--main-blue);
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-10);
    color: var(--blue-50);
}

    @media (width <= 550px) {
        #title {
            height: 400px;
        }
    }

    @media (width <= 450px) {
        #title {
            height: 300px;
        }
    }

    #title > img {
        height: 100%;
        border-radius: 50%;
    }

    #title > div {
        padding-top: var(--space-4);
        padding-bottom: var(--space-4);
        font-size: var(--text-2xl);
    }

#content {
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.5;
    font-family: Roboto;
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--main-blue);
    row-gap: var(--space-3)
}

    .header {
        font-size: var(--text-2xl);
        font-weight: 400;
    }

    .section-content {
        margin-bottom: var(--space-5);
    }