@font-face {
  font-family: "Baskerville";
  src: url("../fonts/LibreBaskerville-Regular.ttf") format("truetype");
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf") format("truetype");
}
table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #917237;
}

td {
  padding: 10px 10px;
}

tbody tr:nth-child(even) {
  background-color: #ccc;
}

table thead tr {
  background-color: #917237;
  color: white;
}

table thead th {
  padding: 10px 10px;
}

@media screen and (max-width: 1300px) {
  td {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  table {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  thead tr {
    display: flex;
    flex-direction: column;
  }
  table thead tr {
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.Header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: fixed;
  width: 100%;
  background-color: white;
  padding-top: 10px;
  margin-top: -80px;
  z-index: 2;
  box-shadow: 0px 5px 5px #ccc;
}
.Header-img {
  width: 70px;
}
.Header-h1 {
  margin-top: auto;
  margin-bottom: 30px;
  margin-right: 33px;
}
.Header-h1-link {
  transition-duration: 1s;
  font-family: "Baskerville";
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: black;
}
.Header-h1-link:hover {
  color: #917237;
  transition-duration: 1s;
}
.Header-Navbar-burger {
  font-size: 40px;
  color: #917237;
  cursor: pointer;
}
.Header-Navbar-menu {
  background-color: white;
  transform: translateX(-200%);
  position: fixed;
  margin-top: -10px;
  width: 88%;
  height: 100%;
  box-shadow: 5px 0px 5px #ccc;
}
.Header-Navbar-menu-cross {
  font-size: 40px;
  color: #917237;
  margin-right: 30px;
  display: block;
  text-align: right;
  cursor: pointer;
  margin-top: 10px;
}
.Header-Navbar-menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  justify-content: space-between;
}
.Header-Navbar-menu-list-item {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Header-Navbar-menu-list-item-link {
  display: block;
  text-decoration: none;
  color: black;
  transition-duration: 1s;
}
.Header-Navbar-menu-list-item-link:hover {
  color: #917237;
  transition-duration: 1s;
}

@media screen and (min-width: 1200px) {
  .Header {
    align-items: center;
  }
  .Header-h1 {
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 25px;
    width: 25%;
  }
  .Header-h1-link {
    font-size: 24px;
  }
  .Header-img {
    margin-left: 5%;
  }
  .Header-Navbar {
    width: 100%;
  }
  .Header-Navbar-burger {
    display: none;
  }
  .Header-Navbar-menu {
    position: relative;
    transform: translateX(0%);
    margin-left: 0px;
    width: 92%;
    box-shadow: 0px 0px 0px #ccc;
  }
  .Header-Navbar-menu-list {
    flex-direction: row;
  }
  .Header-Navbar-menu-cross {
    display: none;
  }
}
.Footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Article {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 20px;
  padding-bottom: 10px;
}
.Article-title {
  font-family: "Baskerville";
  font-size: 24px;
  margin: 20px 0px;
  font-weight: lighter;
}
.Article-description {
  font-weight: bold;
  margin: 20px 0px;
}
.Article-category {
  margin-top: 15px;
  margin-bottom: 15px;
}
.Article-category-link {
  text-decoration: none;
  color: #917237;
}
.Article-boxImg {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.Article-boxImg-img {
  width: 100%;
}
.Article-content {
  margin-top: 20px;
  margin-bottom: 20px;
}
.Article-hr {
  margin-top: 20px;
  margin-bottom: 30px;
}
.Article-button {
  background-color: #917237;
  border: none;
  color: white;
  padding: 12px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
  border: 3px solid #917237;
  margin: 8px 0px;
}
.Article-button:hover {
  background-color: white;
  color: #917237;
}

.Form {
  width: 60%;
  margin: 20px 0px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.Form-component {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Form-component-category {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Form-component-file {
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  border: none;
}
.Form-component-file-buttonImg {
  padding: 12px 32px;
  margin: 8px 0px;
  margin-left: auto;
  margin-right: auto;
  background-color: #917237;
  color: white;
  border: none;
}
.Form-component-file input[type=file] {
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.Form-component-input {
  width: 100%;
  padding: 12px 20px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  margin-bottom: 14px;
  box-sizing: border-box;
  border: 3px solid #ccc;
  transition: 0.5s;
  outline: none;
}
.Form-component-input:focus {
  border: 3px solid #917237;
}
.Form-component-inputCheckbox {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  transition: 0.5s;
  outline: none;
  display: flex;
  flex-direction: column;
}
.Form-component-inputCheckbox:focus {
  border: 3px solid #917237;
}
.Form-component-button {
  background-color: #917237;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
  border: 3px solid #917237;
  padding: 12px 20px;
  margin: 8px 0;
}
.Form-component-button:hover {
  background-color: white;
  color: #917237;
}
.Form-component-select {
  padding: 12px 20px;
  background-color: #917237;
  color: white;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  outline: none;
}
.Form-component-select-option {
  background-color: #917237;
  color: white;
}
.Form-button {
  background-color: #917237;
  border: none;
  color: white;
  padding: 12px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
  border: 3px solid #917237;
  margin: 8px 0px;
}
.Form-button:hover {
  background-color: white;
  color: #917237;
}

#FormArticle {
  width: 80%;
}

.Page-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 15px;
  font-family: "Raleway";
}
.Page-articles {
  margin-left: 10%;
  margin-right: 10%;
}
.Page-articles-article {
  margin-top: 20px;
  margin-bottom: 20px;
}
.Page-articles-article-title {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Baskerville";
  font-weight: lighter;
  font-size: 20px;
  line-height: 35px;
}
.Page-articles-article-link {
  display: block;
  text-decoration: none;
  color: black;
  transition-duration: 1s;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Baskerville";
  font-weight: lighter;
  font-size: 20px;
  line-height: 35px;
}
.Page-articles-article-link:hover {
  color: #917237;
  transition-duration: 1s;
}
.Page-articles-article-author {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Page-articles-article-date {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Page-articles-article-description {
  line-height: 25px;
  margin-bottom: 10px;
}
.Page-articles-article-category {
  margin-top: 15px;
  margin-bottom: 15px;
}
.Page-articles-article-category-link {
  text-decoration: none;
  color: #917237;
}
.Page-articles-article-hr {
  margin-top: 20px;
  margin-bottom: 30px;
}
.Page-categories {
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.Page-categories-category-title {
  font-family: "Baskerville";
  font-weight: lighter;
  font-size: 20px;
  line-height: 35px;
}
.Page-categories-category-title-link {
  display: block;
  text-decoration: none;
  color: black;
  transition-duration: 1s;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: "Raleway";
  font-weight: lighter;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
}
.Page-categories-category-title-link:hover {
  color: #917237;
  transition-duration: 1s;
}

@media screen and (min-width: 1200px) {
  .Page {
    margin-left: 2%;
    margin-right: 2%;
  }
  .Page-articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .Page-articles-article {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
    margin-right: 20px;
    width: 400px;
  }
  .Page-articles-article-link {
    font-size: 24px;
  }
  .Page-categories {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .Page-categories-category-title-link {
    width: 450px;
    text-align: center;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Raleway";
}

.main {
  margin-top: 80px;
}

.mainAdmin {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
}

.MenuAdmin {
  overflow: hidden;
  background-color: #917237;
  position: fixed;
  bottom: 0;
  color: white;
  width: 100%;
  z-index: 1;
}
.MenuAdmin-title {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: none;
}
.MenuAdmin-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.MenuAdmin-list-item {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.MenuAdmin-list-item-link {
  color: white;
  text-decoration: none;
}

.sectionAdmin {
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
}

.active {
  transform: translateX(-100%);
  transition-duration: 1s;
}

.inactive {
  transform: translateX(-200%);
  transition-duration: 1s;
}

.Admin {
  text-align: center;
}
.Admin-title {
  text-align: center;
  margin-bottom: 10px;
  padding-top: 10px;
}
.Admin-boxImg {
  text-align: center;
  margin-top: 20px;
}
.Admin-boxImg-img {
  width: 60%;
}
.Admin-delete {
  color: #db3535;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 16px;
}
.Admin-modify {
  text-decoration: none;
  color: #917237;
}
.Admin-show {
  text-decoration: none;
  color: #917237;
}

.Message {
  text-align: center;
  color: white;
  padding: 12px 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.Error-message {
  background-color: #db3535;
}

.Success-message {
  background-color: #006800;
}

.success {
  color: #006800;
  font-weight: bold;
}

.Query-message {
  background-color: #917237;
}

.Comment {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 20px;
}
.Comment-title {
  margin-bottom: 30px;
}
.Comment-commentList-content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Comment-commentList-pseudo {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Comment-commentList-hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

.Modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 1000;
}
.Modal-dialog {
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.Modal-dialog-h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Modal-dialog-p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Modal-dialog-button {
  background-color: #917237;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition-duration: 0.4s;
  margin-top: 10px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}

.Home {
  background-image: url("../img/zaini-izzuddin-55btQzyDiO8-unsplash.jpg");
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  animation: fadeInFromNone 1s ease-out;
}
.Home-content {
  margin-left: 5%;
  margin-right: 5%;
  text-align: justify;
}
.Home-component {
  background-color: white;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0px 0px 5px #ccc;
}
.Home-component-p {
  font-family: "Raleway";
  font-size: 16px;
  text-align: center;
}
.Home-article {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #7A7A7A;
}
.Home-article-blockImg {
  text-align: center;
}
.Home-article-blockImg-img {
  width: 100%;
  height: 100%;
}
.Home-article-blockInfos {
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
  margin-bottom: 5%;
  display: flex;
  flex-direction: column;
}
.Home-article-blockInfos-top-author {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Home-article-blockInfos-top-date {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Home-article-blockInfos-top-title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Baskerville";
  font-weight: 300;
  font-size: 24px;
}
.Home-article-blockInfos-top-description {
  margin-top: 10px;
  margin-bottom: 10px;
}
.Home-article-blockInfos-bottom-p {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: right;
}
.Home-article-blockInfos-bottom-a {
  background-color: #917237;
  border: none;
  color: white;
  padding: 12px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
  border: 3px solid #917237;
}
.Home-article-blockInfos-bottom-a:hover {
  background-color: white;
  color: #917237;
}

.Account {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Account-title {
  font-family: "Raleway";
  font-size: 20px;
  padding-top: 30px;
}
.Account-p {
  margin: 10px;
}

@media screen and (min-width: 700px) {
  .Home-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .Home-article {
    margin-left: 10px;
    margin-right: 10px;
    max-width: 40%;
  }
}
@media screen and (min-width: 1200px) {
  .MenuAdmin {
    position: relative;
    min-width: 300px;
    max-width: 300px;
    z-index: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .MenuAdmin-title {
    display: block;
  }
  .MenuAdmin-list {
    flex-direction: column;
    align-items: center;
  }
  .MenuAdmin-list-item {
    text-align: center;
  }
  .MenuAdmin-list-item-link {
    color: white;
  }
}
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */