/* 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: black;
   color: white;
   background-image: url('/images/juliaset.png');
   background-repeat: no-repeat;
   background-size: cover;
}

div.blessing {
   font-family: Times, Times New Roman, Liberation; 
   font-style: italic; 
   font-size: normal;
   text-align:center;
   color: lightblue;
   margin-bottom: 2em;
}

div.contents {
    color:yellow;
    font-family: Arial;
    font-size: 5vmin;
    position:absolute;
    right:10%;
    margin-top: 15%;
    text-align: right;
}

a {
   color: lightblue;
   text-decoration: none;
   font-size: 5vmin;
}

div.poem { 
   /* inset poem 5% on each side */ 
   /* make sure no justification attempted */ 
   /* 10% from the left */ 
   /* 10% from the right, & fix IE6 abs.pos. */ 
   color: lightblue;
   margin-left:40%; 
   margin-top: 2em;
   margin-bottom: 2em;
   width:80%; 
   font-style: italic;
}

header h3 {
  margin: 0px;
  padding: 0px;
  font-size: 5vmin;
  border-bottom: none;
  font-family: Times, Times New Roman, Liberation;
}

h1 {
   font-family: Times, Times New Roman, Liberation;
}

.para {
   padding-top: 5px;
   text-indent: 2em;
}
