article {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

footer {
    display: none;
}

.top-content {
    flex: 1;
    padding-top: 5rem;
    max-width: 1080px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 8rem;
}

.top-content img {
    display: block;
    max-width: 100%;
    flex: 1;
    width: 20vw;
}

.top-content p {
    flex: 1;
}

.about-svg {
    align-self: center;
}

.about-svg img {
    height: 100%;
}

@media (max-width: 1080px) {
    article {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        margin: 8rem 0;
        position:unset;
    }

.about-svg img {
    width: 95vw;
}

.top-content img {
    width: 100%;
}

    .top-content {
        flex-direction: column;
        gap: 2rem;
    }

    .top-content p {
        padding: 0 2rem;
    }

    footer {
        display: flex;
    }
}