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

.states {
	grid-area: s;
	margin-bottom: 50px;
}