body {
    margin: auto;
    width: 90%;
       line-height: 1.8;
}

H1,
H2,
div {
    text-align: center
}

h1 {
    font-size: 1.875rem;
    text-align: center;
    text-transform: uppercase;
    word-wrap: break-word;
    margin: 1rem;
}

.header_image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}

.central_image {
    display: flex;
    justify-content: center;
}

.central_image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    background-color: #eaeaea;
    padding: 1rem;
    margin: 2rem 0rem;
}

 .blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.block {
    flex: 1 1 18%;
    margin: 2rem;
    text-align: center;
}

.block img {
    width: 100%;
    height: auto;
    display: block;
}

.block p {
    margin: 1rem;
    color: #1d1d1b;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .block {
        flex: 1 1 100%;
    }
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;;
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    
    .text{text-align: left;}
}

.col {
    flex: 1 1 50%;
    padding: 1rem;
    box-sizing: border-box;
}

.img img {
    width: 100%;
    height: auto;
    display: block;
}

.row.reverse {
    flex-direction: row;
    
    .text{text-align: right;}
}

@media (max-width: 768px) {

    .row,
    .row.reverse {
        flex-direction: column;
    }
}