/* Anchored in the Word Blog stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Kotta+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asul&display=swap');

/* default styles */
body {background-color:#fafafa;}
a {color:#000000; }
a:visited { color:#800080; }
a:hover { color:#0000ff; }
a:active { color:#FF0000; }
/* Don't underline links */
a:link {text-decoration: none;}
a:visited {text-decoration: none;}

/* screen size adjustments */
@media only screen and (max-width: 600px) {
 /* body {background-color: lightblue;} */
 h1 {font-size:20pt;}
}
 


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {...}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {...}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {...}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}



h1 {
 font-family: 'Kotta One', serif;
 font-size:30pt; }
 
h2 {
 font-family: 'Asul', sans-serif;
 font-size:18pt; }
 
nav {
 background-color:#abab;
 width: 100%;
 color: #00;
 padding: 0px;
 margin: 5px 5px;
 border-style:solid;
 border-color:#000000;
 border-width:thin;}
 
nav li {
 display:inline; 
 padding:0 10px 0 10px }

header {
 width:100%;
 color:#ffffff;
 
 margin: 5px 5px;
 background-color:#800080;}
 
header>div {
 position:inherit;
 text-align:center;
 color:#ffffff;
 border: 4px ridge #ffffff;}

article {
 width:90%;
 margin: 10px auto;
 text-align:justify;
 padding:10px;
 border:1px solid #800080;
 background-color:#eaeaea; }

article h2 {
 color:#800080; }
 
article p {
 text-indent:1em;
 font-size: 14px; }



body {  }