.single-post {

}

.single-post > div.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.single-post > div.title {
    background: linear-gradient(104deg, rgba(0, 29, 173, 0.68) 15.42%, rgba(0, 12, 71, 0.68) 84.65%);
    height: 250px;
    width: 100%;
    padding: 2rem 0;
}

.single-post > div.title > h1 {
    bottom: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 100%;
    align-items: end;
    color: white;
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.single-post > div.container > article {
    width: 100%;
    margin: 0;
    padding: 2rem 0;
    min-height: calc(100vh - 250px);
}

@media only screen and (max-width: 1200px) {
    .single-post > div.title {
        height: 150px;
    }

    .single-post > div.title > h1 {
        font-size: 2rem;
    }

    .single-post > div.container > article {
        padding: 1rem;
        width: calc(100% - 2rem);
    }
}