body {
  color: darkblue;
}

main {
  padding: 10px 200px;
}
h1 {
  color: darkblue;
  text-align: center;
  margin: 20px;
}

h2 {
  margin-bottom: 10px;
}

p {
  font-size: 20px;
  line-height: 2rem;
}

section {
  margin: 50px;
}

section a {
  font-weight: bold;
  text-decoration: underline !important;
}

/* Styling the "Biz kimmiz?" section */
section ul {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0;
  margin-top: 15px;
}

section ul li {
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  font-weight: 600; /* Make the names stand out */
  color: darkblue;
  padding: 5px 0;
}

section ul li::before {
  content: "• "; /* Adding custom bullet */
  color: darkblue;
  font-size: 1.5rem; /* Larger, more visible bullet */
  font-weight: bold;
  margin-right: 10px; /* Space between bullet and name */
}

@media screen and (max-width: 480px) {
  main {
    padding: 10px;
  }
  p {
    font-size: 14px;
  }
}
