html {
  height: 100%;
  width: 100%;
}

.banner{
  background-color: indianred;
  padding: 10px;
}
body{
  background-color: #FFCCCB;
  text-align: center;
  color: #351e10;
}

table.ocdsb{
  border:0px;
  border-color: #FFCCCB;
}
table,tr,th,td{
border-collapse: collapse;
margin-right: 600px;
margin-left: 600px;
}

th.nine{
  background-color:#FA8072;
}
th.ten{
  background-color:indianred;
}
th.eleven{
  background-color:#ED2939;
}
th.twelve{
  background-color:maroon;
}

p{
  font-family: serif;
  margin-right: 500px;
  margin-left: 500px;
}

h1.text-container{
  
}
h1{
  text-align: left;
  font-size: 21pt;
  color: #4b3a26;
  font-family: monospace;
}
th.title{
  background-color: indianred;
}
h2{
  color: maroon;
  font-size: 20pt;
  font-weight: 600;
  font-family: monospace;
  text-decoration: underline dotted;
}

h2.welcome{
  font-style: italic;
  font-family: monospace;
  font-size: 30pt;
}

img.bubble{
  text-align: center;
}


.wrap-collabsible {
  margin-bottom: 1.2rem 0;
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;

  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;

  padding: 1rem;

  color: maroon;
  background: indianred;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
  color: maroon;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: rgba(250, 224, 66, .2);
  border-bottom: 1px solid rgba(250, 224, 66, .45);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;
}

