/* Styles for <p> tags */
p {
    font-size: 16px; /* Base font size */
    line-height: 1.6; /* Relaxed line spacing */
    margin-bottom: 1rem; /* Margin bottom for spacing */
}

/* Styles for <ol> tags */
ol {
    list-style-type: decimal; /* Decimal list style */
    padding-left: 1.25rem; /* Left padding for indentation */
    margin-bottom: 1rem; /* Margin bottom for spacing */
    color: #2d3748; /* Darker gray color */
}

/* Styles for <li> tags */
li {
    margin-bottom: 0.5rem; /* Space between list items */
}

/* mb-4 */
.plusmind-paragraphs p {
    margin-bottom: 1.5rem; /* This is equivalent to 16px */
}

.plusmind-legal ol {
  list-style: initial;
  list-style-type: decimal;
  margin: initial;
  padding: initial;
}

.plusmind-legal ul {
  list-style: initial;
  list-style-type: initial;
  margin: initial;
  padding: initial;
}

.plusmind-legal ol ul {
  margin-left: 2em;
}

.plusmind-legal li {
    margin: initial;
    padding: initial;
}

.plusmind-legal h1 {
    font-weight: revert;
    font-size: revert;
    margin: initial;
    padding: initial;
}

.plusmind-legal h2 {
    font-weight: revert;
    font-size: revert;
    margin: initial;
    padding: initial;
}


.crossword {
    display: grid;
    grid-template-rows: repeat(8, 1fr);
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
    bottom: 15%;
    width: 284px;
    margin: auto;
  }
  
  .crossword div {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid transparent;
  }
  
  .crossword .letter {
    border: 1px solid black;
    font-weight: bold;
  }
  
  .crossword .red {
    color: red;
  }
  
  .crossword .orange {
    color: orange;
  }
  
  .crossword .yellow {
    color: rgba(234, 234, 8, 0.899);
  }
  
  .crossword .green {
    color: green;
  }
  
  .crossword .blue {
    color: blue;
  }
  
  .crossword .indigo {
    color: indigo;
  }
  
  .crossword .violet {
    color: violet;
  }


