header.hero img {
    object-fit: cover;
    filter: brightness(90%);
}

header.hero h1 {
    color: var(--secondary);
    text-shadow: 5px 5px 0 var(--primary);
}

header.hero a {
    margin: auto;
    display: block;
    width: 60px;
    height: 60px;
}

header.hero a img {
    width: 100%;
    height: 100%;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 70px var(--marginX);
}

article:nth-child(even) {
    align-items: flex-end;
    background: var(--secondary);
    color: var(--text-light)
}

article:nth-child(even) h2 {
    color: var(--text-light);
    padding-left: 2rem;
}

article:nth-child(even) h2::after {
    right: auto;
    left: 0;
}

article h2 {
    position: relative;
    width: fit-content;
    font-size: 2rem;
}

article h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: var(--primary);
    display: block;
    position: absolute;
    right: 0;
}

article .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

article .content p {
    width: 40%;
}

article .content figure {
    width: 40%;
}

article .content figure img {
    max-width: 100%;
}