.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

h2,
h3,
p {
  text-align: center;
}

.domain-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  width: 100%;
}

.column {
  flex: 1 1 auto; /* Adjust flex property for equal width columns */
  margin: 10px;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  list-style-type: none;
}

.column ul {
  padding: 0;
  list-style-type: none;
}

.column li {
  margin-bottom: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.column li:hover {
  background-color: #f9f9f9;
}

.column li a {
  text-decoration: none;
  color: inherit;
}

.column li a:hover {
  color: #007bff;
}




.containerX {
  background-color: #f5f5f5 !important;
  background-color: #00f5ff !important;
  
  padding: 20px;
}

 .containerx .category_title_dpx{
    color: #333 !important;
    font-size: 44px !important;
    text-align: center;
    margin-top: 0;
  }



@media screen and (min-width: 768px) {
  .domain-list {
    justify-content: flex-start;
  }

  .column {
    width: calc(100% / 3 - 20px); /* Adjust width to create three equal-width columns */
  }
}
