/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url("Site Elements/NoMercybg.webp");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-attachment: fixed;
  color: Black;
  font-family: sans-serif;
  text-align: center;
}

#banner {
  text-decoration: none;
  margin: auto;
  width: 80%;
  max-width: 1440px;
  height: 80px;
  font-size: 56px;
  text-align: center;
  font-family: impact;  
}

#bannerlink{
  text-decoration: none; 
  color: Orangered;
}


#container {
  border: wheat 7px ridge;
  color: White;
  width: 80%;
  height: 80%;
  max-height: 768px;
  max-width: 1440px;
  margin: auto;
  padding: 16px;
  overflow: auto;
  background-color: rgba(255, 69, 0,  .75);
}

#center {
  border: black solid;
  color: Black;
  margin: 16px;
  padding: 16px;
  overflow: auto;
  background-color: wheat;
}

#left {
  border: black solid;
  color: Black;
  float: left;
  width: 45%;
  height: auto;
  margin: 16px;
  overflow: auto;
  background-color: wheat;
}

#right {
  border: black solid;
  color: Black;
  float: right;
  width: 45%;
  height: auto;
  margin: 16px;
  overflow: auto;
  background-color: wheat;
}

table, th, td {
  padding: 1px;
  margin: auto;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
}

th {
  background-color: orangered;
  border: 1px solid orangered;
}

table {
  border: 2px solid orangered;
}

td {
  border: 1px solid orangered;
  background-color: white;
}


