html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 16px;
  /* the font-family property value you got from Google Fonts */
  font-family: 'DM Serif Text', serif;
  /* sets the webpage background color */
  background-color: rgb(32, 40, 36);
  color: white;
}

body {
  width: calc(100%-40px);
  height: auto;
  margin: 1% 1%;
  background-color: #3e4943;
  padding: 1%;
  /*border: 5px solid black;*/
  border-radius: 10px;
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

h1 {
  margin: 0;
  font-size: 60px;
  text-align: center;
  text-shadow: 2px 2px 4px #aaaaaa;
}

p,
li {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 1px;
}
.center {
  display: flex;
  margin: 0;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  
}
.container {
  display: flex; /* Enables Flexbox */
  flex-direction: row; /* Arranges items horizontally (default) */
  justify-content: space-between; /* Spreads items out */
  gap: 10px; /* Adds space between items */
  align-items: center; /* Centers items vertically */
  justify-content: center; /* Centers items horizontally */
}
div {
  align-items: center;
}


ul.header {
  list-style-type: none;
  margin: 0;
  padding: 0%;
  overflow: hidden;
  background-color: #ffffff00;
  display: flex;
  justify-content: center;
}

a.header {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: .2rem 2rem;
  text-decoration: none;
  text-shadow: #6f6f6f 1px 1px 2px;
  font-size: 32px;
}

.headerlogo {
  display: flex;
  justify-content: flex-shrink 1;
  justify-content: left;
  height: 48px;
}

nav {
  display: flex;
  justify-content: space-between;
  height: 3rem;
  margin-bottom: 1rem;
  background-color: rgb(32, 40, 36);
  padding: 1rem;
  border-radius: 10px;
}

.maincontent {
  background-color: rgb(32, 40, 36);
  border-radius: 10px;
  padding: 1rem;
}

a {
  color: #bde2ee;
}

.homepagetri
{
  display: flex;
  height: auto;
  width: auto;
  gap: 1%;
}

.leftbar {
  display: block;
  width: 16%;
  height: auto;
  overflow-wrap: break-word;
  padding: 1%;
  margin-bottom: 1%;
  border: 2px solid black;
  
}

.pleftbar {
  padding: 0px;
  margin: 0px;
  margin-bottom: 1%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bolder;
  letter-spacing: .01rem;
  font-size: 16px;
}

.mainsection
{
  display: block;
  width: 60%;
  padding: 1rem;
  border: 2px solid grey;
}

.pmainsection
{
  padding: 0px;
  margin: 0px;
  margin-bottom: 1rem;
}

.rightbar {
  display: block;
  width: 16%;
  height: auto;
  overflow-wrap: break-word;
  padding: 1%;
  margin-bottom: 1%;
  border: 2px solid black;
  
}
