/* 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." */

a{
  color: #9c9c9c;
  text-decoration: none
}

a:hover{
  color: cyan;
  text-decoration: none 
}


body {
  background-color: #010400;
  background-image: url("https://welcometolaplace.net/assets/tumblrcity.gif");
  background-repeat: repeat-x;
  background-attachment: fixed;
  background-position: bottom;
  
  color: white;
  font-family: Century, serif;
}

h1 {
   font-size: 50px;
   text-align: center;
}

p {
   font-size: 20px;
   line-height: 1.5;
   
}


  .no-bullets {
  list-style-type: none; /* Remove bullets */
  font-size: 20px;
   line-height: 2.0;
    padding: 20px 20px 20px 75px;
    width: 550px;
    position: relative;
    text-align: left;
    margin: 50px 0;
    box-sizing: border-box;
    background-color: #134080;
    text-shadow: 4px 4px black;
}  
  
/* Change the color of links on hover */
.topnav a:hover {
  color: cyan;
}

  #statuscafe {
    padding: .5em;
    background-color: #134080;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}



  
  