.wrapper {
    display: grid;
    grid-template-areas:
    "b b"
    "c c"
    "f f";
}

.contacts {
	grid-area: c;
}