

/* 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." */
html{
  background-image: url("/images/bg.gif");
  /*background-color: #A67FC1;*/
  color: black;
  font-family: Verdana;
  }
.sam{
  text-align:center;
  background-color: rgba(70,155,219,0.5);
  border:3px solid black;
  }
.headerarea{
  margin:5px auto;
  width:70%;
  text-align:center;
  }
.container
{
  color:white;
  background-color:#7939A7;
  width:70%;
  margin:auto;
  padding:3px;
  border:7px solid #342C1D;
  }  


.flex{
  display:flex;
  justify-content:center;
  }
.navbar{
  background-color:#A67FC1/*#69158D*/;
  border:1px black solid;
  color:white;
  }
.navbar ul{
  margin: auto;
  padding:2px 20px;
  display:flex;
  justify-content:space-between;
  list-style-type:none;
  }
.navbar ul a{
  font-size:1.3em;
  color:#7A5AFB;
  }


  
.sidecontent{
  text-align:center;
  margin:1px;
  color:white;
  background-color:#5A0C91;
  width:45%;
  }
.sidebar{
  text-align:center;
  margin:10px;
  padding:2;
  color:white;
  background-color:#5A0C91;
  width:25%;
  }
.sidebar ul{
  margin: auto;
  list-style-type:none;
  }
.sidebar ul li{
  padding:5px;
  }
h1{
  color:white;
  font-size:3em;
  }
  
h1 img{height:1em}

.sidebar a{
  font-size:1.3em;
  color:#7A5AFB;
  }

.content{
width:70%
}

.content a{
 color:#729ef2;
}
.content a:visited{color:#729ef2;}
.content h2{
  text-align:center;
  text-decoration-line:underline;
  text-decoration-style:wavy;
  }
.explanation{
  color:#bfbac3;
  background-color:#7f7784;
  border:3px #6d6870 solid;
  margin:auto;
  width:90%;
  padding:5px;
  }


figure{text-align:center;
  margin:auto;
  width:90%}
figure img
{
  text-align:center;
  margin:auto;
  width:60%
  }
figure figcaption{
  margin:auto;
  text-align:center;
  }