html {
  background-color: #733CC2;
}
p {
  margin-top: 2;
  margin-bottom: 2;
  color: #0058D4;
  font-size: 20px;
}
li {
  font-size: 20px;
  color: #471daf;
}
h2 {
  margin-top: 2;
  margin-bottom: 2;
  font-size: 19px;
  color: #3D23A1;
}
ul {
  color: purple;
}
h1 {
  margin-top: 2;
  margin-bottom: 2;
  color: #270A4A;
  background-color: #482B99;
}
h3 {
  color: #660000;
  background-color: #DB2C2C;
  display: inline-block;
  font-size: 25px;
}
img {
  border-radius: 6px;
}
footer {
  display:flex;
	color:#6A4AE0;
	background-color:#6A4AE0;
	padding:10px;
	margin:10px 0;
	font-weight:bold;}
.rightimg {
	float:right;
	border:2px #FFBB84 solid;
	margin:5px;}
	
button {
  background-color: #5B4DC9;
  color: white;
  padding: 7px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 20%;
  border: 4px solid #4C04AA;
  transition-duration: 0.4s;
}
.button:hover {
  background-color: #2F2759; /*  */
  color: blue;
}
.inline-element {
            display: inline-block;
            vertical-align: middle;
            background-color: #482B99;
}
h1, h2, h3, h4, li, ul, p,

a:visited {
  color: #2A1547;
}
a:link {
  color:#9B56FC; 
}
a:hover {
  color: #A876A7;
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
h5 {
  background-color: #DB2C2C;
  font-size: 19px;
  color: #660000;
  display: inline-block;
}
h6 {
  background-color: #993A5A;
  font-size: 20px;
  color: #4737ED;
}
#textContainer {
  height: 200px; /* Set a fixed height for the container */
  overflow-y: auto; /* Enable vertical scrolling when content overflows */
  border: 1px solid #ccc; /* Optional: Add a border for visibility */
  padding: 10px; /* Optional: Add padding for better appearance */
}