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


h1 {
  background-color:blue;
  color: white;
  font-family : Tahoma; 
  font-size: 35px;
}

h2 {
  background-color:lightgrey;
  color: blue;
  font-family : Tahoma; 
  font-size: 30px;
}

body {
  background-color:lightyellow;
  color: black;
  /*font-family: Arial, Helvetica, Verdana; */
  font-family: Tahoma;
  font-size: 20px;
  }
  
img {
position:absolute;
}

table {
  background-color:white;
  color: black;
  width:50%;
  font-family : Times New Roman; 
  font-size: 30px;
}


article {
    padding: 25px 25px 10px 10px;
    background:lightyellow;
    border: 2px solid black;
    
}


li {
    margin-bottom: 25px;
    margin-left: 15px;
    padding: 10px 10px 10px 10px;
    background: white;
    border: 2px solid darkblue;
   /* border-radius: 10px;*/
    border-bottom-right-radius: 50px 30px;
    box-shadow: inset -5px -5px 5px #888;
   
}

code {
    margin-left: 50px;
    display: block;
    padding: 15px 15px 10px 10px;
    /*background: #F2F2F2;*/
    background: white;
    border: 2px solid darkblue;
    font-family: "Courier";
    font-size: 0.75em;
    /*border-radius: 10px;*/
    border-bottom-right-radius: 50px 30px;
    box-shadow: inset -5px -5px 5px #888;
}

p {
    padding: 15px;
    text-align: justify;
}

/**/