/* TODO: REMOVE ME */
.preview-mode {
  display: none;
}
/* --- */

/*****************
General
******************/
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background: #eee;
}

body {
  margin: 0;
}

.container,
.flex-container {
  max-width: 60rem;
  padding: 0 2rem;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  color: #fff;
}

h2,
h3,
h4 {
  color: #0a5198;
}

main a {
  color: #0a5198;
  text-decoration: none;
  text-shadow: 0.05em 0 0 #eee, -0.05em 0 0 #eee,
    0 0.05em 0 #eee, 0 -0.05em 0 #eee,
    0.1em 0 0 #eee, -0.1em 0 0 #eee,
    0 0.1em 0 #eee, 0 -0.1em 0 #eee;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-repeat: repeat-x; background-position: bottom 0 center;
  background-size: 100% 0.1em;
}

main a:focus {
  outline: none;
  background-color: #cef;
  text-shadow: 0.05em 0 0 #cef, -0.05em 0 0 #cef,
    0 0.05em 0 #cef, 0 -0.05em 0 #cef,
    0.1em 0 0 #cef, -0.1em 0 0 #cef,
    0 0.1em 0 #cef, 0 -0.1em 0 #cef;
}

p {
  line-height: 1.5;
  color: #222;
}

time {
  color: #222;
  font-weight: bold;
}

/*****************
Header
******************/

nav {
  text-align: center;
  padding: 20px 0;
  background: #333;
}

@media (min-width: 680px) {
  nav {
    text-align: right;
  }
}

nav ul {
  list-style: none;
  margin: 0 10px;
  padding: 0;
}

nav li {
  display: inline-block;
}

nav a {
  padding: 15px 10px;
  color: #fff;
  text-decoration: none;
}

nav a,
nav a:visited {
  color: #fff;
}

nav a.selected,
nav a:hover {
  color: #0a5198;
}

.header-section {
  background: #0a5198;
  padding: 60px 0;
}

.flex-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 892px) {
  .flex-container {
    justify-content: space-between;
  }
}

.logo {
  box-shadow: 10px 10px 73px 9px rgba(0,0,0,0.71);
  width: 30%;
  min-width: 165px;
  height: auto;
  margin-bottom: 50px
}

@media (min-width: 892px) {
  .logo {
    width: 20%;
    margin-bottom: 0;
  }
}

.header-description {
  width: 100%;
  text-align: center;
}

@media (min-width: 892px) {
  .header-description {
    width: 70%;
    text-align: left;
  }
}

.header-description p {
  color: #fff;
}

/*****************
Article Section
******************/
.post {
  margin-top: 4rem;
}

.icon-twitter-sign {
  width: 30px;
}

.post-media-player {
  margin-top: 1rem;
}

/*****************
Footer
******************/
footer {
  background: #333;
  text-align: center;
  padding: 30px 0;
  margin-top: 4rem;
}

footer a {
  color: #fff;
}

footer p {
  color: #fff;
}

footer a.selected, nav a:hover {
  color: #0a5198;
}
.copyright {
  color: #fff;
}

/*****************
About
******************/
.about-content {
  margin-top: 4rem;
}

.author-images {
  margin: 2rem 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: stretch;
}

.author-images li {
  text-align: center;
}

.author-images img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  box-shadow: 4px 16px 45px 1px rgba(112,110,112,0.55);
}

.author-images .social-media-item {
  display: flex;
}

.author-text {
  max-width: 250px;
}

/*****************
Detailpage
******************/
.comments {
  margin-top: 3rem;
}

.comment {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-top: 1rem;
}

.comment img{
  width: 60px;
  height: 60px;
  margin-right: 1rem;
}

.comment-meta {
  color: #0a5198;
  font-weight: bold;
}

.comment-text {
  margin-top: 0.5rem;
}

.honig {
  display: none;
}

.new-comment {
  overflow: hidden;
  margin-top: 3rem;
}

.new-comment form .field label {
  display: block;
}

.new-comment form .field small {
  color: #888;
}

.new-comment form .field input,
.new-comment form .field textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 10px;
  outline: none;
  padding: 5px;
  width: 100%;
}

.new-comment form .field button {
  background: #0a5198;
  border: none;
  border-radius: 6px;
  color: #fff;
  float: right;
  padding: 6px;
}

.new-comment .messages {
  margin: 20px -20px 0;
}

.new-comment .messages .message {
  padding: 5px 20px;
}

.new-comment .messages .success {
  background: #dff0d8;
  color: #468847;
}

.new-comment .messages .error {
  background: #f2dede;
  color: #b94a48;
}

label {
  color: #0a5198;
}