/* 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 {
  font-size: 16px;
  background-color: rgb(33, 33, 33);
  background-image: url(/images/background.png);
  background-repeat: repeat;
  color: rgb(0, 173, 0);
  font-family: "Times New Roman";
}

div{
 display: block; 
}

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

a {
  color: rgb(194, 43, 43);
}

#container{
  margin: 50px auto;
  width: 90%;
  max-width: 1000px;
  font-size: 14px;
  background-color: transparent;
  color: rgb(0, 173, 0);
  font-family: "Times New Roman";
}

#header{
  font-size: 24px;
  background-color: black;
  padding: 0 5%;
  border-color: rgb(0, 156, 0);
  border-style: solid double;
  border-width: 3px 15px;
}

#header li {
    font-size: 1.2em;
    display: inline-block;
    margin-right: 1.5em;
    margin-bottom: 0.2em;
    margin-top: 0.2em;
}

#icon-header{
  position: relative;
}

#icon-header img{
  max-width: 80%;
}

#links-header{
  position:relative;
  text-align: center;
}

#links-header li a {
    color: rgb(0, 173, 0);
    text-decoration: none;
    background-color: inherit;
}

#main-box{
  font-size: 18px;
  background-color: black;
  padding: 0 5%;
  margin-top: 50px;
  border-color: rgb(0, 156, 0);
  border-style: solid double;
  border-width: 3px 15px;
}

#main-box h1{
 text-align: center; 
}