/* 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." */

body {
  background-color: #000080;
  color: #FFFFFF;
  font-family: "Times New Roman", Times, serif;
  margin: 20px;
}

a:link { color: #00FFFF; text-decoration: underline; }
a:visited { color: #FF00FF; text-decoration: underline; }
a:active { color: #FF0000; text-decoration: underline; }

h1, h2, h3 { color: #FFFF00 }
h1 { text-align: center; }

.container {
  width: 800px;
  margin: 0 auto;
  background-color: #000080;
  border: 5px ridge #C0C0C0;
  padding: 10px;
}

.sidebar {
  background-color: #000050;
  border: 3px inset #C0C0C0;
  padding: 10px;
  vertical-align: top;
}

.main-content { padding: 10px; vertical-align: top; }

.blog-post {
  border: 1px dashed #FFFF00;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #000000;
}

.date {
  font-style: italic;
  color: #C0C0C0;
  font-size: 14px;
}

.footer {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
  border-top: 3px double #c0C0C0;
  padding-top: 10px;
}

.blink {
  animation: blinker 1s linear infinite;
  color: #FF0000;
  font-weight: bold;
}
@keyframes blinker {
  50%{ opacity: 0; }
}

hr { border: 2px groove #C0C0C0; }