/* core styling for website */

body {
  margin: 0;
  padding: 0;
}

/* define font files */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/RobotoSlab-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/Roboto-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: "normal";
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: "normal";
  font-weight: 300;
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: "normal";
  font-weight: 500;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}

/* site header and footer */
header {
  text-align: center;
  font-family: "Roboto Slab";
  width: 100%;
  box-sizing: border-box;
  color: black;
  /* background-color: #006052; */
  padding: 10px;
}
header h1 {
  margin-bottom: 0;
}
header a {
  color: inherit;
  text-decoration: none;
}
header p {
  color: #b5b5b5;
  margin: 0;
}
footer {
  text-align: center;
  font-family: "Roboto";
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
}
footer p {
  color: #606060;
  font-size: 14px;
}
footer p a {
  color: #606060;
}

/* basic layout box for content */
.ui-box {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  box-shadow: 5px 5px;
}
.ui-head {
  background-color: 	#444444;
  font-family: "Roboto Slab";
  color: white;
  font-size: 18px;
  border: 1px solid black;
  padding: 10px;
}
.ui-head a {
  color: white;
}
time {
  background-color:	#d9d9d9;
  color: black;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 12pt;
  border-radius: 5px;
  padding: 2px;
  margin-left: 15px;
}
.ui-body {
  background-color: #ededed;
  font-family: "Roboto";
  font-weight: 400;
  border: 1px solid black;
  border-top: none;
  padding: 10px;
}
.ui-body > * {
  margin: 0;
}
.ui-body p {
  margin-top: 0;
  margin-bottom: 16px;
}
.ui-body a {
  color: black;
  text-decoration: underline;
}
.postlist {
  list-style-type: none;
  padding: 0px;
}
.postlist li td {
  vertical-align: top;
}
.postlist li span {
  font-style: italic;
}

iframe {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 20px;
}
