main {height: 100%;}
#hero {margin-top: 115px;}

#hero h1 {
    border-bottom: 1px solid var(--ic-light);
    color: var(--ic-gold-2);
    width: 525px;
    margin: 0 auto 50px auto;
    font-size: var(--fontSize-1);
}

#hero h3 {
    color: var(--ic-gold-2);
    margin: 50px 0;
    font-size: var(--fontSize-3);
    text-align: center;
}

article {
    margin-top: 50px;
    font-size: var(--fontSize-5);
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

article:nth-child(2n) {flex-direction: row;}

article img {
    border-radius: 15px;
    width: 45%;
    max-height: 750px;
}

.text h2 {
    color: var(--ic-gold-2);
    margin: 20px 30px;
}

.text p {margin: 10px 30px;}
.text strong {color: var(--ic-gold-2);}
.text ol {margin: 0 50px;}
.text li {list-style: decimal;}

    /* == == == == Responsiveness == == == == */

@media (max-width: 450px) {
    #hero h1 {width: 80%;}

    article {flex-direction: column;}
    article:nth-child(2n) {flex-direction: column;}

    article img {
        width: 100%;
        margin-bottom: 30px;
    }

    .text p, .text ol {
        width: 100%;
        margin-left: 0;
    }
    .text li, .text li p {margin: 15px 20px 15px 20px;}
    .text li p {margin-left: 5px;}
}