/* 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: #AED6F1;
    font-family: "arial";
    text-align: center;
    font-size: 40px;
}
#main {
    background-color: #AED6F1;
    margin: 30px auto 30px auto;
    font-size: 50px;
    color: green;
    padding: 25px;
    border: none;
    width: 500px;
    text-align: center;
    text-shadow: 0px 0px 5px #616A6B;
}

#main img {

max-width: 100%;
height: auto;

}

#header_image {

 width: 650px;
 padding: none;
 margin: 50px auto -55px auto;

}

#header_image img {

  width:100%;
  height: auto;

}

#links {
    background-color: white;
    margin: 45px 20% 0px 20%;
    padding: 10px 10px 10px 10px;
    border: 1px solid #616A6B;
    text-align: right;
}
#links a {
    font-size: 20px;
    background-color: black;
    padding: 3px;
    font-weight: bold;
    font-style: italic;
}
h1 {
    font-size: 50px;
    color: #616A6B;
    font-style: italic;
    margin: 0px;
    text-align: center;
    padding: 5px 0 5px 0;
}
h2 {
    font-size: 34px;
    font-weight: bold;
  padding: 5px 0 5px 0;
}
a:link {
    text-decoration: none;
    color: #616A6B;
}
a:hover {
    font-style: italic;
    text-decoration: underline;
}
a:visited {
    color: #616A6B;
}