@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
@font-face {
  font-family: "Playfairdisplay";
  src: url("fonts/PlayfairDisplay-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Lato-bold";
  src: url("fonts/Lato-Bold.ttf");
}
@font-face {
  font-family: "Sacramento";
  src: url("fonts/Sacramento-Regular.ttf");
}
html,
body {
  font-family: "Source Sans Pro", sans-serif;
  background-color: #fcf9f9;
}

h1,
h2,
h3 {
  font-family: "Playfairdisplay", Times, Arial;
}

h1 {
  font-size: 2.625rem;
}

h4 {
  color: #bb6577;
  font-size: 1rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-family: "Sacramento", Times, Arial;
  font-size: 2rem;
}

p {
  font-size: 0.875rem;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: calc(100% - 56px);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: calc(100% - 88px);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1080px;
  }
}
@media (min-width: 576px) {
  .container-wide {
    max-width: calc(100% - 24px);
  }
}
@media (min-width: 1280px) {
  .container-wide {
    max-width: 1152px;
  }
}

.post {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
}
.post_title {
  font-size: 2rem;
  padding-bottom: 4rem;
}
.post_title::after {
  content: "";
  display: block;
  position: relative;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  background-color: #bb6577;
  height: 2px;
  width: 6rem;
}
@media (min-width: 768px) {
  .post_title {
    font-size: 2.625rem;
  }
}
.post_img {
  height: 16rem;
  width: 100%;
}
@media (min-width: 480px) {
  .post_img {
    height: 24rem;
  }
}
@media (min-width: 1024px) {
  .post_img {
    height: 30rem;
  }
}
.post_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_text {
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .post_text {
    padding: 0 2rem;
    margin: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .post_text {
    padding: 0 5rem;
    margin: 2rem 0;
  }
}
.post_meta {
  font-size: 0.875rem;
  display: flex;
  align-self: flex-start;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px dotted rgba(18, 18, 18, 0.5);
  border-bottom: 1px dotted rgba(18, 18, 18, 0.5);
  color: rgba(18, 18, 18, 0.5);
}
.post_meta-likes {
  display: flex;
  gap: 1rem;
}
.post_meta-likes a:hover {
  border-bottom: 1px solid #bb6577;
}
.post_meta-likes::before {
  content: "";
  display: block;
  background: url("img/svg-heart.svg") no-repeat center;
  width: 0.875rem;
  height: 0.875rem;
  align-self: center;
}
.post_meta-views {
  display: flex;
  gap: 1rem;
}
.post_meta-views::before {
  content: "";
  display: block;
  background: url("img/svg-dot.svg") no-repeat center;
  width: 0.3rem;
  height: 0.3rem;
  align-self: center;
}
.post_meta-link {
  margin-left: auto;
}
@media (min-width: 768px) {
  .post_meta-link {
    margin-right: 5rem;
  }
}
@media (min-width: 768px) {
  .post {
    padding: 2.5rem 2rem;
  }
}

.link {
  position: relative;
  display: block;
  width: 3rem;
  height: 1.5rem;
  transition: transform 0.5s ease-out;
}
.link:hover {
  transform: translateX(0.5rem);
}
.link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/svg-arrow.svg") no-repeat center;
  width: 1.5rem;
  height: 1.5rem;
}

.btn-container {
  margin: 2rem auto;
}
.btn-container .btn {
  border: 1px solid #bb6577;
  border-radius: 0;
  color: #bb6577;
  font-family: "Playfairdisplay", Times, Arial;
  font-weight: bold;
  font-size: 1rem;
  width: 11.5rem;
  transition: all 0.2s ease;
}
.btn-container .btn:hover {
  background-color: #bb6577;
  color: #FFFFFF;
}

.card-container {
  display: flex;
  flex-direction: column;
  max-width: 762px;
  margin: 0 auto;
}
.card-container-archive {
  padding: 2rem 0;
  border-bottom: 1px dotted rgba(18, 18, 18, 0.5);
}
.card-container_title {
  margin: 2rem auto 1rem;
  font-size: 1.625rem;
}
@media (min-width: 768px) {
  .card-container_title {
    font-size: 2.625rem;
    margin: 2rem auto;
  }
}
.card-container-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .card-container-posts {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
}
.card-container .card-post {
  display: flex;
  flex-direction: column;
  max-width: 240px;
}
.card-container .card-post_title {
  color: #bb6577;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
}
.card-container .card-post_meta {
  font-size: 0.75rem;
  color: rgba(18, 18, 18, 0.5);
  margin-bottom: 0.5rem;
  margin-top: auto;
}
.card-container .card-post_text {
  font-family: "Source Sans Pro", sans-serif;
  position: relative;
}
@media (min-width: 768px) {
  .card-container .card-post {
    align-items: flex-start;
  }
}

.aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.aside_title {
  font-size: 1rem;
  color: #bb6577;
  margin-bottom: 2rem;
}
.aside_text {
  font-family: "Playfairdisplay", Times, Arial;
  font-weight: bold;
  margin: 1.5rem 0;
}
.aside_handwritten {
  font-family: "Sacramento", Times, Arial;
  font-size: 2rem;
}
.aside img {
  width: 100%;
}

.c-page {
  position: relative;
  background-color: #FFFFFF;
  padding: 2rem 0rem 4rem;
}
@media (min-width: 576px) {
  .c-page {
    padding: 2rem 1rem 4rem;
  }
}
@media (min-width: 768px) {
  .c-page {
    padding: 4rem 2rem;
  }
}
.c-page h1 {
  margin-bottom: 3rem;
  font-size: 1.625rem;
}
.c-page h1::before {
  content: "";
  display: block;
  position: relative;
  border-top: 3px solid #bb6577;
  top: 6rem;
  left: 0;
  width: 5rem;
  height: 3px;
}
@media (min-width: 768px) {
  .c-page h1::before {
    top: 8rem;
    font-size: 1.625;
  }
}
.c-page h1::after {
  content: "Maxime's wereld";
  display: block;
  font-family: "Sacramento", Times, Arial;
  font-size: 3.375rem;
}
@media (min-width: 768px) {
  .c-page h1::after {
    font-size: 4.375rem;
  }
}
@media (min-width: 768px) {
  .c-page h1 {
    font-size: 2.625rem;
  }
}
.c-page a {
  color: #bb6577;
}
.c-page a:hover {
  -webkit-text-decoration: underline #bb6577;
          text-decoration: underline #bb6577;
}
@media (min-width: 768px) {
  .c-page p,
  .c-page h5 {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .c-page p,
  .c-page h5 {
    padding: 0 5rem;
  }
}

.c-single {
  background-color: #FFFFFF;
  max-width: 838px;
  margin: 0 auto;
}
.c-single .row {
  margin-left: 0;
  margin-right: 0;
}
.c-single .post {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .comments-area {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .comments-area {
    padding: 0 5rem;
  }
}
.comments-area .comment-form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.comments-area .comment-form .comment-form-comment {
  order: 2;
}
.comments-area .comment-form .comment-form-comment text-area {
  height: 100px;
}
.comments-area .comment-form > * {
  display: flex;
  flex-direction: column;
}
.comments-area .comment-form #comment {
  border-color: rgba(18, 18, 18, 0.2);
  min-height: 100px;
  max-height: 200px;
  height: 100px;
}
.comments-area .form-submit {
  margin-left: auto;
  order: 3;
}
.comments-area .form-submit .submit {
  position: relative;
  border: 1px solid #bb6577;
  background-color: #FFFFFF;
  font-family: "Playfairdisplay", Times, Arial;
  font-weight: bold;
  color: #bb6577;
  height: 2.5rem;
  width: 8.5rem;
  padding-right: 2rem;
  background: url("img/svg-arrow.svg") no-repeat;
  background-position: 85% 50%;
  background-size: 1.5rem;
}
.comments-area .form-submit .submit:hover {
  background-color: #bb6577;
  color: #FFFFFF;
  background-image: url("img/svg-arrow-white.svg");
}
.comments-area label {
  font-family: "Playfairdisplay", Times, Arial;
  font-weight: bold;
  color: #bb6577;
  margin-bottom: 1rem;
}
.comments-area .comment-reply-title,
.comments-area .comment-form-url,
.comments-area .comment-form-cookies-consent,
.comments-area .comment-notes,
.comments-area .logged-in-as {
  display: none;
}

.pagination {
  padding-top: 1rem;
}
.pagination .nav-links {
  display: flex;
  justify-content: space-between;
  position: relative;
  font-family: "Playfairdisplay", Times, Arial;
  font-weight: bold;
  color: #bb6577;
  gap: 1rem;
}
.pagination .nav-links .page-numbers {
  position: relative;
}
.pagination .nav-links .page-numbers.current {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.pagination .nav-links .page-numbers.next::after {
  content: "";
  display: block;
  position: absolute;
  left: 4.5rem;
  top: 0rem;
  background: url("img/svg-arrow.svg") no-repeat center;
  width: 1.5rem;
  height: 1.5rem;
}
.pagination .nav-links.prev::after {
  content: "";
  display: block;
  position: absolute;
  right: 3.5rem;
  top: 0rem;
  background: url("img/svg-arrow.svg") no-repeat center;
  transform: rotate(180deg);
  width: 1.5rem;
  height: 1.5rem;
}
.pagination .nav-previous {
  display: flex;
}
.pagination .nav-previous::before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  background: url("img/svg-arrow.svg") no-repeat center;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(180deg);
  margin-right: 1rem;
}
.pagination .nav-next {
  display: flex;
}
.pagination .nav-next::after {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  background: url("img/svg-arrow.svg") no-repeat center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
}

.limited-width {
  max-width: 762px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  color: rgba(18, 18, 18, 0.5);
}
.breadcrumbs li {
  display: flex;
  gap: 0.5rem;
}
.breadcrumbs li:nth-child(1n+2)::before {
  content: "-";
  display: flex;
}

.header {
  background-image: url("img/background.png");
  background-size: contain;
  font-family: "Playfairdisplay", Times, Arial;
}
.header-title {
  display: flex;
  justify-content: center;
}
.header-title-maxime {
  font-family: "Sacramento", Times, Arial;
  font-size: 5.25rem;
  position: relative;
  left: -2rem;
}
@media (min-width: 768px) {
  .header-title-maxime {
    font-size: 6.25rem;
    left: -5rem;
  }
}
.header-title-wereld {
  font-size: 3.125rem;
  position: relative;
  top: -2.5rem;
  right: -10rem;
}
@media (min-width: 768px) {
  .header-title-wereld {
    font-size: 4.125rem;
    right: -9rem;
  }
}

.navigation {
  padding-bottom: 2rem;
  justify-content: center;
}
.navigation .navbar {
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .navigation .navbar {
    justify-content: flex-start;
  }
}
.navigation .navbar .current-menu-item a {
  -webkit-text-decoration: underline #bb6577;
          text-decoration: underline #bb6577;
  text-underline-offset: 0.5rem;
}
.navigation .navbar a:hover {
  -webkit-text-decoration: underline #bb6577;
          text-decoration: underline #bb6577;
  text-underline-offset: 0.5rem;
  color: black;
}

.footer {
  background-image: url("img/background.png");
  background-size: contain;
  font-family: "Playfairdisplay", Times, Arial;
}
.footer .copyright {
  font-size: 1rem;
  font-weight: 600;
  padding: 2rem 1rem 1rem;
}/*# sourceMappingURL=style.css.map */