@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:opsz@8..144&display=swap');
/* modal window css for coundation pop up */
.modal-window {
 position: fixed;
  background: rgba(255,255,255, .9);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-window:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-window > div {
  position: fixed;
  z-index:9000;
 /*add left and top to position to upper left */   
  left:0;
  top:0;
  margin: 10% auto;
  padding: 2rem;
  background: #fff;
  color: #444;
  border-style: solid;
  border-radius: 10px;
}

.modal-window header {
  font-weight: bold;
}

.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}

.modal-close:hover {
  color: #000;
}

.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

/* CSS for dues banner */

.center { 
  line-height: 200px;
  height: 200px;
  text-align: center;
  background-color: #033C54;
}

.center p {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  color: white;
  font-family: 'Roboto Serif', serif;
  font-size: 30px;
}

/* CSS for custom progress bar */

.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
  position: fixed;
  top: 0;
}

.progress-bar {
  height: 8px;
  background: rgba(201, 169, 105, 1);
  width: 0%;
  position: sticky;
}