#home picture {
    width: 90%;
}

.two-article {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    height: fit-content;
}

.two-article:last-of-type {
    border-top: var(--varm-vild) solid 2.5px;
}

.two-article .two-article:first-of-type p {
    align-self: center;
}

.two-article .two-article:last-of-type {
    border: none;
    border-top: var(--varm-vild) solid 2.5px;
}

.two-article .two-article:last-of-type img {
    width: 4rem;
    box-shadow: none;
}

@media (min-width: 768px) {    
    #home picture img {
        aspect-ratio: auto;
    }
    
    section:has(.two-article) {
        gap: 1rem;
        flex-direction: row;
    }

    .two-article {
        align-self: flex-start;
        margin: 1rem 0;
    }
    
    .two-article:last-of-type {
        border-top: none;
        border-left: var(--varm-vild) solid 2.5px;
    }

    .two-article .two-article:last-of-type {
        border: none;
    }
    
    .two-article a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .two-article img {
        width: 75%;
        aspect-ratio: 1/1;
    }
    
}
