set background gradient over multiple html sections

I have multiple sections each with the background.

.grad-back{
background: rgb(0,92,109);
background: linear-gradient(180deg, rgba(0,92,109,1) 0%, rgba(1,12,14,1) 39%, rgba(1,9,10,1) 65%, rgba(0,93,110,1) 100%);
}
section {
height:200px;
}
<section class="grad-back">one</section>
<section class="grad-back">two</section>
<section class="grad-back">three</section>

What we would like is the same background over all sections so the gradiant starts on the top section and finishes on the bottom.