* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}


html, body {
  font-family: Arial, Helvetica, sans-serif;
  background: url("../assets/images/uk_flag_1920.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color: rgba(210, 210, 210, 0.9);
  background-blend-mode: lighten;
  color: #220022e6;
}

#full_page {
  max-width: 1024px;
  min-width: 800px;
/*  border: 1px solid yellow; */
  display: block;
  margin-left: auto;
  margin-right: auto;

}

#title h3{
  text-align: center;
  text-shadow: 1px 1px 2px #00008b;
  font-size: 2.0em;
/*  border: 1px solid red; */
  padding: 5px;
}

.body_text {
  margin: 20px 50px 20px 50px;
  text-align: justify;
  font-size: 1.3em;
  text-shadow: 1px 1px 1px #000;
/*  border: 1px solid blue; */
  padding: 3px;
  line-height: 1.3em;
}

#constitution {
  text-align: center;
}
#table_block {
/*  border: 2px solid pink; */
  table-layout: fixed;
  width: 80%;
  margin: 2px;
  margin-left: 10%;
}

.table_entities {
/*  border: 3px solid red; */
  text-align: center;
  font-size: 0.8em;
  color: #000;
  padding: 2px;
  box-shadow: 1px 1px 2px darkgray;
}

.table_entities a {
    text-decoration: none;
  color: #006666;
}

/* .table_entities a:visited {
  color: black;
} */

.table_entities:hover {
  background-color:bisque;
  font-weight: bolder;
}

#page_footer{
  font-size: 0.8em;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}

/* #footer_text {
  position: absolute;
  bottom: 0px;
  text-align: center;
}
*/
/* faux overlay stuff */

#overlay {
  position: fixed;
  display: none;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 24px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}


/* tickertape css */


* { box-sizing: border-box; }


@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-wrap {
  
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: rgba(#000, 0.9); 
  padding-left: 100%;
  box-sizing: content-box;

  .ticker {

    display: inline-block;
    height: 4rem;
    line-height: 4rem;  
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;

    -webkit-animation-iteration-count: infinite; 
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
   -webkit-animation-name: ticker;
           animation-name: ticker;
    -webkit-animation-duration: 30s;
            animation-duration: 30s;

    &__item {

      display: inline-block;

      padding: 0 2rem;
      font-size: 2rem;
      color: white;   

    }

  }

}



body { padding-bottom: 5rem; }
h1,h2,p {padding: 0 5%;}