/* 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." */

body {
  background-color: transparent;
  color: black;
  font-family: Verdana;
}

.nested-iframe {
  background-color: transparent;
  color: #000;
  font-family: Georgia, serif;
  border: none;
}

.content-frame h2 {
text-shadow: 3px 2px 3px rgba(255,255,255,.2), 4px 4px 4px rgba(206,0,0,0.16);}
.content-frame p {color:#fff; text-shadow: 3px 2px 3px rgba(0,0,0,.2), 4px 4px 4px rgba(0,0,0,0.16);}



/* WIDTH */
::-webkit-scrollbar {
  width: 16px;
  opacity: 0;
}

/* Base scrollbar hidden */
::-webkit-scrollbar {
  width: 16px;
  height: 8px;
  opacity: 0;
}

/* Scrollbar becomes visible on hover */
:hover::-webkit-scrollbar {
  opacity: 0;
}

/* HOVER STATE */
::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
  border-color: transparent;
  opacity:0;
}