body {
  background: #50545C;
  color: white;
}

.cover {
  display: block;
  margin: auto;
  width: 100%;
}

.post_couv {
  margin: auto;
  display: block;
}

.home {
  display: flex;
  flex-wrap: wrap;
}

.post {
  width: 23%;
  margin: 1em;
  flex-grow: 1;
  max-width: 33%;
}

.tag {
  width: 23%;
  margin: 1em;
  flex-grow: 1;
  max-width: 33%;
  border: 2px solid red;
  border-radius: 1em;
}

.site-nav .page-link {
  color: white;
  line-height: 1.5;
}

.site-title, .site-title:visited {
  color: white;
}

.footer-col-wrapper {
  font-size: 15px;
  color: white;
  margin-left: -15px;
}

.post-meta {
  color: black;
}

.post-wrapper .post-meta {
  color: white;
}

a, a:visited {
  color: white;
}

.post-wrap {
  background-color: white;
  padding: 1em;
}

.post-wrap a {
  color: black;
}

.wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 75%;
  padding-right: 30px;
  padding-left: 30px;
}

.chip {
  display: inline-block;
  padding: 0 10px;
  height: 25px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 25px;
  background-color: lightblue;
  margin: 3px;
}

.cat {
  display: inline-block;
  padding: 0 10px;
  height: 25px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 25px;
  background-color: lightgreen;
  margin: 3px;
}

.checked {
  color: orange;
}

.accordion {
  color: #444;
  background: #50545C;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  max-height: 0px;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.post-wrapper {
  width: 90%;
  margin: 1em;
  flex-grow: 1;
  max-width: 90%;
}

.info-babelio {
  padding: 1em;
}

table {
  color: white;
}

table tr:nth-child(even) {
  background: #50545C;
}

.bar {
  width: 57%;
  background-color: orange;
  height: 1em;
}

#histo {
  width: 50%;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 500px) {
  .post {
    width: 100%;
    max-width: 100%;
  }
  .site-nav .page-link {
    color: black;
    line-height: 1.5;
  }
  .tag {
    width: 100%;
    max-width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */