/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
HTML{
  cursor: url("https://img.icons8.com/ios-filled/20/FFFFFF/hand-cursor.png"), auto;
}
body {

  color: white;
  font-family: Podkova;
    background-color: black;
    background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.05) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 75%,
    transparent
  );
  background-size: 5px 5px; /* Adjust for line spacing */
}
.maintext {
  font-family: "Podkova", serif;
  font-weight: 100;
  font-style: normal;
  text-align: left;
}
.dm-r {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: 4px;
  font-style: normal;
  color: white;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);



}

.dm-i {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: italic;
}
.content {
            flex: 1;
        padding: 20px;

        overflow-x: hidden;
      overflow-y: auto;
            color:#ffffff;
   font-size:25px;


        }
        
.bordered {
  background-color: rgba(41,41,41,.3); /* Or any dark gray color value like #333, #555, etc. */
  border: 3px solid #292929; /* Adjust the first value (3px) for the thickness of the outer white line */
  outline: 0px solid #292929; /* Adjust this value to match the outer border thickness for the inner white line */
  outline-offset: -6px; /* Adjust this value to control the spacing between the two white lines (negative value moves it inward) */
  margin-left: auto;
  margin-right: auto;
  padding: 20px; /* Add some padding inside the div for content spacing */
    max-width: 70%; 
  /* Add any other desired styles for your div here */
}
.chroma {
  color: white;
  font-size: 2em; /* Adjust as needed */
  font-weight: bold; /* Optional */
  text-shadow:
    2px 1px 0 red,
    -1px -2px 0 blue,
}