/* You can either copy the below and paste it between style tags on your HTML page, OR you can copy this to a file and name it .css and link it from your HTML page. */

/* tip: you can add a scrollbar to any note by adding this property to its css class: overflow:auto; */ 

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

#preloader {
  position: fixed;
  inset: 0; 
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  background: #000;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

#preloader img {
  width:  1000px;  /* bigger */
  height: auto;
}

body {
  background-color: rgba(140,40,40,0.18);
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(140,40,40,0.18) 0px,
      rgba(140,40,40,0.18) 1px,
      transparent 1px,
      transparent 20px
    ),

    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 1px,
      transparent 1px,
      transparent 20px
    );
    
    filter: contrast(0.98) saturate(0.9);
}

.content {
  width: 781px;
  margin: 40px auto;
}

.entry-content {
  margin-top: 10px;
}
.entry {
  margin: 40px 0;
  padding: 10px 0;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 12px;
}

.date {
  font-size: 12px;
  letter-spacing: 1px;
}

.text {
  font-size: 16px;
  line-height: 1.7;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.dropbtn {
  padding: 4px 8px;
  background: #222;
  color: white;
  border: 1px solid #444;
  cursor: pointer;

  font-size: 11px;
  letter-spacing: 0.5px;
}

.dropdown-content {
  display: none;
  position: absolute;

  background: #222;
  min-width: 70px;

  border: 1px solid #444;
  z-index: 1;
}

.dropdown-content a {
  display: block;

  padding: 6px 8px;
  color: white;

  font-size: 11px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
}