/*
Theme Name: Abdoul Amadou - Holistic Therapy
Description: Abdoul Amadou's Custom theme
Version: 1.0.0
Author: m'enfin
Author URI: https://www.menfin.be
Requires at least: 6.7.2
Tested up to: 6.7.2
Requires PHP: 8.2
Text Domain: abdoul
*/
:root {
  --green: #7a8f30;
  --brown: #8e5424;
  --sand: #f9f1e4;
  --white: #FFFFFF;
  --black: #000000;
}

@media (max-width: 1200px) {
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
    --columns: 4;
  }
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: calc(100% / var(--columns) - var(--wp--style--block-gap) + var(--wp--style--block-gap) / var(--columns)) !important;
    flex-grow: 1;
  }
}
/* change width of column when screen is 781px and smaller */
@media (max-width: 781px) {
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
    --columns: 2;
  }
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
    width: 40%;
    flex-grow: 1;
  }
}
/* change width of column when screen is 500px and smaller */
@media (max-width: 500px) {
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
    --columns: unset;
  }
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
body {
  overflow-x: hidden;
  min-height: 100%;
  background-color: var(--sand);
}

.bg-green {
  background-color: var(--green);
}
.bg-green a {
  color: var(--sand);
  text-decoration: none;
}
.bg-green a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
