/* START: BLOG */
pre {
    margin: 10px 0; /* Adjust the margin as needed */
    padding: 10px;  /* Optional: Add padding inside the <pre> block */
    background-color: #AFAFAF; /* Change this color to your preferred background color */
    border: 1px solid #AFAFAF; /* Optional: Add a border to make the code block more distinct */
    border-radius: 5px; /* Optional: Round the corners of the border */
    overflow-x: auto; /* Optional: Add horizontal scrolling if the code is too wide */
    color: black;
}

.blog-container {
  max-width: 95%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
}
/* END: BLOG */