body {
  margin: 0;
}

.water-treatment-table {
  background: #f1f1f1;

  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  container: watertable / inline-size;
  margin-top: 10vh;

  .table-wrapper {
    padding: 0 20px 20px;
    overflow-x: scroll;
  }

  h2 {
    text-align: center;
    font-size: 32px;
    margin: 0;
    padding: 20px 0;
  }

  table {
    background: #b5b5b5;
    border-spacing: 10px;
  }

  th,
  td {
    background-color: white;
    padding: 5px 15px;
  }

  table,
  th,
  td {
    border: 1px solid black;
    font-size: 28px;
  }

  .top-tr {
    font-size: 32px;
  }

  .back-light-blue {
    background: #87ceeb;
  }

  .back-blue {
    background: #3f51b5;
    color: white;
  }

  .back-red {
    background: #f44336;
    border-radius: 8px;
  }

  .back-light-green {
    background: #cddc39; /*#8bc34a;*/
    border-radius: 8px;
  }

  .back-green {
    background: #4caf50;
    border-radius: 8px;
  }

  @container watertable (width < 875px) {
    .table-wrapper {
      padding: 0 5px 5px;
    }

    table {
      border-spacing: 5px;
    }

    table,
    th,
    td {
      font-size: 14px;
    }

    th,
    td {
      padding: 5px;
    }

    .top-tr {
      font-size: 16px;
    }
  }
}

.cross-points {
  background: #87ceeb;
  padding: 30px;

  .cross-wrapper {
    background: #fff;
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    padding: 30px;
  }

  .pic {
    position: relative;
    background-color: #2196f3;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 300px;
    height: 300px;
  }

  .pic::before {
    position: absolute;
    bottom: -40px;
    left: -15px;
    font-size: 7pc;
    content: "✖";
    color: #f44336;
  }

  .pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: inherit;
  }
}
.content-container {
  margin-left: 20vw;
  margin-right: 20vw;
}

@media (max-width: 700px) {
  .content-container {
    margin-left: 0;
    margin-right: 0;
  }
}
