/* CODE FOR CENTERING OF INLINE IMAGES */

.center_image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


/* MY OWN CSS */

.content > ul, ol, li, p { font-size: 24px; }

.content > h1 {
  padding-left: 60px;
  padding-right: 60px;
}

.content > h2, h3, p {
  padding-left: 0px;
  padding-right: 0px;
}

.RWH_footer_bold {
  font-family: var(--header-font-family), var(--header-font-family-fallback);
  font-weight: 600;
  white-space: nowrap;
}

.RWH_footer_style {
  font-family: var(--header-font-family), var(--header-font-family-fallback);
  font-weight: 600;
  white-space: nowrap;
/*  font-size: 16px; */
  color: var(--primary);
}

.RWH_bg_title {
  position: relative;
  z-index: 1;
  background-color: var(--secondary);  
}

.RWH_bg_title::before {    
      content: "";
      background-image: url("images/title.png");
      background-size: cover;  
      position: absolute;
      top: 30%;
      right: 0px;
      bottom: 15%;
      left: 0px;
      opacity: 1;
      z-index: -1;  
}

.RWH_bg_title > h1 {
  font-size: 64px;
  color: white;
  line-height: 0.25em;
}

.RWH_bg_title > h3 {
  color: darkgrey;
  
}

.RWH_footnote_right {
  position: absolute;
  bottom: 60px;
  right: 60px;
  padding-right: 0em;
  font-size: 0.6em;
}

.RWH_footnote_title {
  position: absolute;
  bottom: 20px;
  left: 60px;
  padding-right: 0em;
  font-size: 0.6em;
  color: white;
}

.RWH_footnote_right_title {
  position: absolute;
  bottom: 20px;
  right: 60px;
  padding-right: 0em;
  font-size: 0.6em;
  color: white;
}


/*
:root{
  --primary: #007EA7;
  --secondary: #199F6B;
}
*/

.RWH_bg1 { background-color: var(--primary); }
.RWH_bg2 { background-color: var(--secondary); }
.RWH_black { background-color: black ;}

a { color: #FFA500; 
    font-weight: bold;}

.pull-left-40 {
  float: left;
  width: 37%;
}
.pull-right-60 {
  float: right;
  width: 57%;
}

.pull-left-80 {
  float: left;
  width: 77%;
}
.pull-right-20 {
  float: right;
  width: 17%;
}


/* css for tables */

/* Table width = 100% max-width */
.remark-slide table{ width: 100%; }

/* change the background color to white for shaded rows (even rows) */
.remark-slide thead, .remark-slide tr:nth-child(2n) {background-color: white; }
