/* CSS Document */
/*color constrast passed on colora11y.com*/

body  {
      background: linear-gradient(to bottom, rgba(153, 153, 153,0.8), rgba(122, 122, 122, 0.8));
	  background-size: 100%;
	  }

main {margin-top: 25px;
	  margin-left: auto;
	  margin-right: auto;
	  width: 40em;
      padding: 30px;
	  background-color: rgba(229, 228, 226);
	  border: 3px dashed rgb(92, 92, 92);
      }

h1    {
	  text-shadow: 2px 2px 2px lightgrey;
	  color: #3C3C7E;
	  text-align: center;
      } 

h2   {
	  color: #8E6F82;
	  }

p     {
	   text-indent: 1em;
      }

@media (min-width: 760px) {
	body  {background-color: #8E6F82;}
	
	main  {
		border: 10px double black;
	}
    
    }



