/*get rid of spacing in the header and footer around the margin*/

/* Header spacing */
header.wp-block-template-part,
header.wp-block-template-part > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Site wrapper spacing */
.wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove Gutenberg default spacing between header/content/footer */

.wp-site-blocks > .entry-content {
  margin-block-start: 0 !important;
}

/* Remove gap before footer */
.wp-site-blocks > footer.wp-block-template-part {
  margin-block-start: 0 !important;
}

.wp-site-blocks > footer.wp-block-template-part::before {
  display: none !important;
}