/* 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-family:serif; /*u can change the font to pretty much any web safe font:D*/
  font-size:10px; /*this is pretty big font*/
  background:#000;
  background-color: white;
  background-image: url("https://vinnyvistazo.com/img/backgrounds/cobblestone_2.png");
  background-repeat: yes-repeat;
  background-position: right top;
  }
  /* you can name your divs whatever u feel like! i name them nonsense, but you can also rename them something that makes sense if u want lol */
  /*this is a little box with your content in it!*/
 
  a {
    color:#fff;
    }
  a:hover {
    color:#e5e5e5;
    transition-duration: .9s; 
    }
 
  #jonathan {
    text-align:left;
    margin:auto;
    border:5px outset #ffffff;
    color:#e5e5e5;
    background:#000;
    width:300px;
    margin-top:20px;
    padding:5px;
    }
 
   #jonathan #title {
    color:#e5e5e5;
    font-weight:bold;
    font-size:50px;
   }
 
 