/* 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 {text-align: center;
color: maroon;
padding: 9px;
background: indianred;
border-style: ridge;
margin: 5px;
}

h2 {text-align: center;}

ul {text-align: center;}

li {text-align: left;}

p {
  color: darkred;
  padding: 10px;
  background: lightcoral;
  text-align: center;
  border-style: solid;
  border-color: darkred
}

span {
  text-align: center;
}

a:hover {
 color: green
}

.special {
  color: green;
  font-weight: bold;
}
h1 + p {
  font-size: 120%;
}

h1 + p h2 {
  font-size: 70%;
}
li em {
  color: red;
}
li span {
  color: green}
  
  .outer {
    border: 5px solid aquamarine }
    
    .box {
  border-style: ridge;
  padding: 15px;
  background-color: lightsalmon;
  color: darkred;}
  
  .boxcheckered {
  padding: 10px;
  width: calc(100% - 30px);
  background-color: rebeccapurple;
  color: grey; 
  background-image: linear-gradient(green 5.1px,transparent 1.1px),linear-gradient(to right,red 10.1px,blue 1.1px);
  background-size: 15px 22px;
  
  /* more styles */
  
  
}





body {
  border: 20px;
  padding:50px;
  background: darkslategrey;
  background-image: url("checkered2.jpg");
  width: 700px;
  text-align: center;
  margin: 0 auto }



