body {
  background-color: #181818;
  color: #ccc;
  padding-left: 300px;
  padding-right: 300px;
  font-size: 1.1rem;
  font-size: normal;
  line-height: 1.6rem;
  margin: 0;
  font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
    Bitstream Vera Sans Mono, Courier New, monospace, serif;
  word-wrap: break-word;
}
html,
body {
  width: 100%;
  height: 100%;
}
a {
  cursor: pointer;
  color: #ff2e88;
  text-decoration: none;
  border-bottom: 1px solid #ff2e88;
}
a:hover {
  background-color: #ccc;
  color: #fff;
}
ul {
  list-style-type: none; /* remove default list styles */
}

li {
  position: relative;
  display: block;
  padding-left: 20px;
}

li::before {
  content: "\2022";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
}
* {
  box-sizing: border-box;
  text-rendering: geometricPrecision;
}


/* Mobile styles */
/* Mobile styles */
@media (max-width: 768px) {
  body {
    padding-left: 2%; 
    padding-right: 2%;
    text-align: center;
  }

  .sidebar {
    display: none;
  }
  .content picture img {
    width: 400px;
    height: auto;
  }
  ul {
    text-align: left; /* Reset text alignment for unordered lists */
    padding-left: 0; /* Remove left padding for unordered lists */
  }
}
