.title-bar {
    background-color: var(--green);
}

.split {
    display: flex;
    gap: 2em;
    width: 100%;
    max-width: 80em;
}

.vertical {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
}

.email {
    background-color: var(--orange);
}

.phone {
    background-color: var(--yellow);
}

.media {
    background-color: var(--blue);
}

.media-icons {
    display: flex;
    gap: 1em;
    align-items: center;
}

.media-icon {
    width: 2em;
}

.directions {
    background-color: var(--pink);
}

.map {
    width: 100%;
    height: 100%;
    min-height: 25em;
    border: 0;
    border-radius: 1em;
}

@media screen and (max-width: 750px) {
    .split {
        flex-direction: column;
    }
}