/* The HTML element itself has the class "myclass", so these styles apply
   to the overall element that contains everything else. */
.myclass {
	font-family: system-ui;		/* use the same font as the system */
	border: none;	/* display a black border */
	padding: 0em 0.5em;
	overflow-x: hidden;
 	overflow-y: auto;
	scroll-behavior: smooth;
	
}
	
	/* add some padding */
}

/* Remove the top margin from the main header so it appears nearer the top */
h1 {
	margin-top: 0;
	font-size:20px;
}

h2 {
    text-align: left;
	margin-top: 0;
	font-size:18px;
}

div {
  text-align: justify;
  text-justify: inter-word;

}

p {
  
font-size:16px;
}

ul {
  
font-size:16px;
}

ol {
 
font-size:16px;

}


.container {
  z-index: 1;
  background: white;
  padding: 1em;
}
blockquote {
  padding: 1em 0.5em 1em 1em;
  position: relative;
  color: #999;
}
blockquote p {
  color: #555;
font-size:16px;
text-align:center;
}
@media screen and (min-width: 300px) {
  blockquote {
    border: 1px solid gray;    
  }
  blockquote:before, blockquote:after {
    background-color: white;
    font-size: 3em;
    font-weight: 800;
    position: absolute;
    height: 20px;
    z-index: 10;
  }
  blockquote:before {
    content:"\201D";
    padding: 0 12px 11px 0;
    left: -8px;
    top: -8px;
  }
  blockquote:after {
    content:"\201C";
    padding: 9px 0 0 11px;
    right: -8px;
    bottom: -7px;
  }
}
blockquote cite {
  font-size: 14px;
  margin-top: 5px;
}
blockquote cite:before {
  content:"\2014 \2009";
}

