
/* Align .content with .nav */

.nav {
 max-width: 800px; 
}

.content {
  max-width: 800px;
  padding: 1em;
}

/* Adjust archive title height to have text not cross the content frame */
.archive-title {
 line-height: 1em;
}


/* add space between icon and symbol out */
.fa-arrow-up-right-from-square {
  margin-left: 4px;
}


/* Body background color */
body {
  /*background-image: linear-gradient(180deg, var(--light) 0%, transparent 200px, transparent 100%), var(--bg-img-light);*/
  background-image: var(--bg-img-dark);
  /*background-image: linear-gradient(180deg, transparent 0%, transparent 50px, var(--light) 200px, var(--light) 100%), var(--bg-img-dark);*/
  background-size: cover;
}


/* Content colors */
.content {
  background-color: var(--light);
  color: var(--dark);
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: var(--shadow);
}

.article-title {
  color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--alike);
}

/* Footer always at bottom of page */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}


/* Reset header background*/
.header {
  background-color: transparent;
  border-bottom: none;
}

.nav-links {
  font-size: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
}

.nav-links a:hover {
  color: var(--cont);
  font-weight: bold;
}

/* Style for article duration element */
.article-duration {
  margin-top: 12px;
  float: right;
  font-size: 12px;
  padding: 1px 5px;
  font-weight: bold;
  border-radius: 3px;
  background: #808080;
  color: #fff;
}

