body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    margin: 7px;
    padding: 0;
    max-width: 800px;
    margin: 100px auto;
    padding: 0 1rem;
}

.interests-section h3 {
    margin-bottom: 0; /* Remove default margin */
}

.interests-section ul {
    margin-top: 0; /* Removes margin above the ul element */
}

a {
    color: blue;
    text-decoration: none;
}

a:visited {
    color: blue;
}

::selection, a:focus, a:hover {
    background-color: blue;
    color: #fff;
}

sup {
    line-height: 0;
}

/* To center images */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 12px;
    margin: 0 auto;
    max-width: 100%;
    font-size: 10px;
}

blockquote {
    border-left: 2px solid #cccccc; /* Add a left border*/
    padding: 0 15px; /* Add some padding for space */
    margin: 10px 0; /* Add some margin for separation */
    color: #555; /* Set the text color */
}

.post-date {
    font-family: 'Courier New', Courier, monospace;
    color: #575757;
    font-size: 18px;
}

details[open] {
    border-bottom: 5px solid rgba(0, 0, 255, 0.15);
}
summary {
    cursor: pointer;
    background-color: rgba(0, 0, 255, 0.15);
    padding-left: 12px;
    border: 1px solid blue;
    border-radius: 10px;
}

progress {
    width: 100%;
    background: #fff;
    color: blue;
    border: .2rem solid blue;
    border-radius: 0;
}

/**
 * Set the background color of the webkit progress bar.
 */

 progress::-webkit-progress-bar {
    background-color: #fff;
  }
  
  /**
   * Set the color of the webkit progress bar.
   */
  
  progress::-webkit-progress-value {
    background-color: blue;
  }
  
  /**
   * Set the color of the mozilla progress bar.
   */
  
  progress::-moz-progress-bar {
    background-color: blue;
  }
  

