/* 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 {
/* white is the default background color so you don't need to specify it
  background-color: white; */
  background-color: #222222;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  margin: 50px;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    height: auto;
    line-height: 1;
  }

h2 {
    font-family: "Lora", serif;  
    font-size: 28px;
    margin-top: 10px;
    letter-spacing: 1px;
    font-style: italic;
}

/* #borderimg {
  border: 10px solid transparent;
  padding: 15px;
  border-image: url(border.png) 20% round;
  width: 150px;
}
*/


a:link { color: #42ff0d; }          /* Unvisited links */
a:visited { color: #ff0dd1; }     /* Visited links */
a:hover { background: lightgray; }  /* Hovered links */
a:active { color: #42ff0d; }         /* Active links */

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

.hr-style {
  border: 5px solid;
  border-radius: 25px;
}

main {
  padding: 20px;
  margin: 10px;
  border: 5px solid;
  border-radius: 25px;
}

footer {
  padding: 10px;
  margin: 10px;
  border: 5px solid;
  border-radius: 25px;
}