p, h2, h3, h4 { color: white; }

/* news.html, about.html */

.section-content {
  border: 1px solid white;
  background-color: black;
  border-spacing: 15px;
  margin-left: auto;
  margin-right: auto;
}

.section-content::before{
  background-color: black;
  content: '';
  left: 0;
  height: 3px;
  margin: auto;
  position: relative;
  right: 0;
  top: -4px;
  width: 80%;
}

.section-content::after{
  background-color: black;
  content: '';
  left: 0;
  height: 3px;
  margin: auto;
  position: relative;
  right: 0;
  bottom: -4px;
  width: 80%;
}

.section-content p:last-child {
    margin-bottom: 20px;
}

.section-content a, a:visited  {
    color: #139ed5;
}


/* center content */
.center_content {
    margin: 0 auto;
}

.payment-confirmed {
    background-color: black;
    padding: 1px 0 10px 10px;
}


/* form button */

.form-button {
    text-decoration: none;
    color: #fff;
    background-color: #0b0b0b;
    width: 200px;
    border: 1px ridge lightgray;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    padding: 12px 10px 12px 10px;
  }
  
  .form-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .form-button:hover {
    border: 1px ridge #139ed5;
  }
  
  .form-button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .form-button:hover span {
    color: #139ed5;  
    padding-right: 25px;
  }
  
  .form-button:hover span:after {
    opacity: 1;
    right: 0;
  }


/* footer */

/* Footer content */
.footer {
    text-align: center;
    color: white;
    padding-bottom: 0em;
}
  
.footer .container {
    background: black;
    padding: 4em 0;
}

.nav-footer {
    display: inline-block;
    float: none;
}


.nav-footer li a:link, a:visited {
    
    display: inline-block;
    color: white;
    background-color: black;
    
    transition: 0.5s ease;
    white-space: nowrap;
    height: 40px;
}

.nav-footer li a:hover, a:active {
    color: #139ed5;
    border-bottom: 3px ridge #139ed5;
    background-color: black;

}

/* unconfirmed */

.main-section {
  background-color: black;
  border: 1px solid lightgrey;
  padding: 5px;
  color: white;
  margin-left: 0;
  margin-right: 0;
}

.main-section p {
  font-size: 18px;
}








