@import url(light.css);
/* (prefers-color-scheme: light);
@import url(dark.css) (prefers-color-scheme: dark); */

:root {
  --md-ref-typeface-brand: "Open Sans", "Raleway", 'Roboto Flex', sans-serif;
  --md-ref-typeface-plain: "Open Sans", "Raleway", 'Roboto Flex', sans-serif;

  /* font-family: var(--md-ref-typeface-plain); */
  font-size: 14px;

  /* background: var(--md-sys-color-background); */
  /* color: var(--md-sys-color-on-background); */
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.grid-container {
  display: grid;
  gap: 20px;
  /* Add some space between grid items */
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns by default for wider screens */
}

@media (max-width: 768px) {

  /* Adjust breakpoint as needed */
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on narrower screens */
  }
}

.grid-container img {
  max-width: 100%;
}

.aic {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.g12 {
  gap: 12px;
}

.g24 {
  gap: 24px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.pb40 {
  padding-bottom: 40px;
}