/* LAND_STYLES.CSS */
*,
::before,
::after {
  box-sizing: border-box;
}


:root {
  --gap-size: 1.5rem;
}
.flex-container {
  display: flex;

  /* flex-flow: column wrap; */
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  border: 5px solid #3014cb;
  padding: 2em;
  background-color: #d8d6f0;
}

.column-main {
  flex: 1;
}

.column-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-size);
}

.column-sidebar > .tile {
  flex: 1;
}

.tile {
  padding: 1.5em;
  background-color: #fff;
}

.flex {
  display: flex;
  gap: var(--gap-size);
}

.centered {
  text-align: center;
}

.cta-button {
  display: block;
  background-color: #cc6b5a;
  color: white;
  padding: 0.5em 1em;
  text-decoration: none;
}

.image-style {
width: 90%;
border: 2px solid #000;
}