/* 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-color: #000;
  color: #fff;
  font-family: Verdana;
}

a {
    color: #fff9fb;
    text-transform: lowercase; /*link style & colors globally*/
}

a:hover {
    background-color: #000;
    color: #f00202;
    text-transform: uppercase; /*Hover link style & color globally*/
}

p { /*Paragraph style & color*/
    border: 5px double;
    border-radius: 15px;
    border-color: #991e29;
    width: 500px;
    height: 400px;
    overflow: auto;
    display: block;
    /*DO NOT*/
    text-align: center;
    /*Touch these three*/
    margin: auto;
    /*Pieces of code!!*/
    color: #fff9fb;
}

footer { /*Footer style & color*/
    border-bottom: 5px solid;
    border-top: 5px solid;
    border-color: #991e29;
    color: #fff9fb;
    display: block;
    /*DO NOT*/
    text-align: center;
    /*Touch these three*/
    margin: auto;
    /*Pieces of code!!*/
    width: 100%;
    font-size: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    
}