.left-column, .right-column {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 1rem;
    margin: 1rem;
    position: relative;
    outline: 1px solid var(--brand-black);
}
.left-column p:not(:first-child), .right-column p:not(:first-child) {
    padding: .5rem;
    padding-left: 0;
}

.startup-container {
    display: flex;
    max-width: 1500px;
    min-width: 300px;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;

}
@media screen and (max-width: 344px) {
    .left-column, .right-column {
        width: 100%;

    }
}