#main_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 2rem;
    align-items: start;
    justify-items: center;
    height: 100%;

    max-width: 75rem;
    margin: 0 auto;
}

.portrait_img {
    border-radius: 1rem;
}

.main_information {
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}

.header_main {
    text-align: left;
    color: #5694be;
}

@media only screen and (max-width: 1350px) {
    #main_wrapper {
        grid-template-columns: 1fr;
    }

    .portrait_img {
        width: 100%;
        max-width: 36rem;
    }

    .margin_flex {
        margin-top: 2rem;
    }
}