/*
  Base
*/
html {
  overflow-y: scroll;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #242424;
  line-height: 24px;
  font-weight: 400;
}

@media (max-width: 30em) {
  body {
    font-size: 16px;
    line-height: 1.5rem;
  }
  body h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
  h2 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

h1 a {
  text-decoration: none;
}

h2 {
  font-size: 24px;
  line-height: 2rem;
  margin-block-start: 2.5em;
  margin-block-end: 1em;
}

h2 a {
  text-decoration: none;
}

h3 {
  font-size: 20px;
  margin-block-start: 2em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  color: #242424;
}

p {
  font-size: 18px;
  line-height: 30px;
}

li {
  font-size: 18px;
  line-height: 32px;
}

a {
  text-decoration: underline;
  color: #242424;
}

a:hover {
  border-bottom: none;
}

article a {
  text-decoration: none;
  color: #8C52FF;
}

article a:hover {
  text-decoration: underline;
  color: #999;
}

p a {
  text-decoration: none;
  color: #8C52FF;
}

p a:hover {
  text-decoration: underline;
  color: #999;
}

img {
  max-width: 100%;
  border-radius: 5px;
}

blockquote {
  margin: 10px 20px 10px;
  padding: 0px 15px;
  border-left: 0.25em solid #8C52FF;
  color: #242424;
  line-height: 1.5;
  font-style: italic;
}

hr {
  border-top: 1px solid #ccc;
}

/*
  Tables
*/
table {
  border-collapse: collapse;
  margin-bottom: 30px;
  width: 100%;
}

table, th, td {
  border: 1px solid #999;
}

th, td {
  padding: 10px;
  text-align: left;
}

strong {
  font-weight: 700;
}

/*
  Code
*/
code,
pre {
  font-family: "Source Code Pro", monospace;
}

code {
  padding: 0.25em 0.5em;
  font-size: 0.8rem;
  background-color: rgba(92, 225, 230, 0.1411764706);
  border-radius: 3px;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  white-space: pre;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  background-color: rgba(92, 225, 230, 0.1411764706);
}

pre code {
  padding: 0;
  font-size: 100%;
  color: inherit;
  background-color: transparent;
}

/* Horizontal code overflow fix */
pre.highlight {
  white-space: pre;
  overflow-x: auto;
}

/* Pygments via Jekyll */
.highlight {
  margin-bottom: 1rem;
  border-radius: 4px;
}

.highlight pre {
  margin-bottom: 0;
}

/* Gist via GitHub Pages */
.gist .gist-file {
  font-family: "Source Code Pro", monospace !important;
}

.gist .markdown-body {
  padding: 15px;
}

.gist pre {
  padding: 0;
  background-color: transparent;
}

.gist .gist-file .gist-data {
  font-size: 0.8rem !important;
  line-height: 1.4;
}

.gist code {
  padding: 0;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

/*
  Site container
*/
.container {
  margin-left: auto;
  margin-right: auto;
  width: 700px;
}

.content-container {
  margin-bottom: 4rem;
}

/*48em*/
@media (max-width: 768px) {
  .container {
    width: 90vw;
  }
}
/*
  Header
*/
.header {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  font-family: "Lato", sans-serif;
}

.header a:hover {
  color: #242424;
}

.header-title a {
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  color: #242424;
}

.header-subtitle {
  color: #999;
}

.gradient-line {
  display: block;
  height: 3px;
  background: linear-gradient(to right, #8C52FF 35%, #5CE1E6);
  border: none;
  margin-top: 10px;
}

/*
  Menu
*/
.menu {
  padding-top: 0.5rem;
  display: block;
  overflow: hidden;
}

.menu-content {
  float: left;
}

.menu-content a {
  color: #999;
  font-size: 1rem;
  padding-right: 10px;
  text-decoration: none;
  font-weight: 400;
}

.social-icons {
  float: right;
}

.social-icons a {
  color: #999;
  font-size: 1rem;
}

@media (max-width: 30em) {
  .social-icons {
    float: right;
    padding-top: 0px;
    display: none;
  }
  .menu-content {
    margin-bottom: 5px;
  }
  .menu-content a {
    font-size: 1rem;
    padding-right: 10px;
  }
  .menu {
    padding-top: 0.3rem;
  }
  .header {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  .footer-description {
    line-height: 18px;
  }
}
/*
  Footer
*/
.footer {
  color: #999;
  text-align: center;
}

.footer-social-icons a {
  color: #999;
  padding: 10px;
  text-decoration: none;
}

.footer a:hover {
  color: #333;
}

.footer-description {
  display: block;
  margin-top: 3px;
  color: #999;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
}

.footer-description a {
  text-decoration: none;
  color: #999;
}

/* Misc */
.center-image {
  margin: 0 auto;
  display: block;
}

/*
  Posts
*/
.posts-container {
  margin-bottom: 5rem;
  padding: 0px;
  list-style: none;
}

.posts {
  display: flex;
  flex-direction: column;
}

.post {
  display: flex;
  align-items: flex-start; /* Aligns items in a row to the start of the flex container */
  margin-bottom: 50px; /* Space between posts */
}

.post-image img {
  width: 120px; /* Fixed square size */
  height: 120px; /* Fixed square size */
  object-fit: cover; /* Ensures the image covers the area, useful for non-square images */
  margin-left: 50px; /* Space between the image and the content */
}

.post-content {
  flex: 1; /* Takes up the remaining space */
}

.post-content h2 {
  margin-block-start: 0em;
}

.post-meta {
  font-size: 12px;
  color: grey;
}

.post-lead {
  margin-top: 15px;
  margin-bottom: 10px;
}

.post-lead a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 600px) {
  /*
   .post {
     flex-direction: column; 
   } */
  .post-image img {
    width: 70px;
    height: 70px;
    margin-left: 15px;
    /* margin-bottom: 10px; Space between the image and the content on small screens */
  }
  .post-content {
    width: 100%; /* Full width on smaller screens */
  }
}
/*
  Thumbnail
*/
.thumbnail-container {
  max-width: 100%;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 25px;
}

.thumbnail-container img {
  margin-top: -11.5%;
  margin-bottom: -11.5%;
}

/*
  Pagination
*/
.pagination {
  overflow: hidden;
  font-family: "Lato", sans-serif;
  text-align: center;
}

.pagination a {
  text-decoration: none;
}

.pagination-button {
  color: #999;
  border: 1px solid #e0e0e0;
  padding: 15px 45px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.pagination-active {
  color: rgb(0, 0, 0);
}

.pagination-active:hover {
  background-color: #e0e0e0;
}

.no-margin-p p {
  margin: 0;
}

.about-img {
  float: left;
  margin-right: 20px; /* Adjust as needed */
  margin-bottom: 0px; /* Adjust as needed */
  max-width: 29%; /* Adjust as needed */
  height: auto;
}

@media (max-width: 30em) {
  .about-img {
    max-width: 38%; /* Adjust as needed */
  }
}
/*
  Post
*/
.post-header-date {
  font-size: 12px;
  margin-top: 10px;
  color: #999;
  padding-bottom: 30px;
}

.post-date {
  display: block;
  margin-top: 3px;
  margin-bottom: 1rem;
  color: #999;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
}

@media (max-width: 30em) {
  .posts h1 {
    font-size: 1.5rem;
  }
  .post-header-date {
    margin-top: 5px;
  }
}
.related {
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.related-posts {
  padding-left: 0px;
  list-style: none;
}

.related-posts a {
  text-decoration: none;
  color: #8C52FF;
  padding-bottom: 5px;
}

.related-posts-link {
  font-size: 18px;
}

/*
  Social media icons
*/
.sharing-icons a {
  padding-right: 10px;
}

.fa-envelope {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-envelope:hover {
  color: #f39c12;
}

.fa-twitter {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-twitter:hover {
  color: #00aced;
}

.fa-instagram {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-instagram:hover {
  color: #375989;
}

.fa-github {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-github:hover {
  color: #343434;
}

.fa-linkedin {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-linkedin:hover {
  color: #0073a4;
}

.fa-facebook {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-facebook:hover {
  color: #3d5b99;
}

.fa-pinterest {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-pinterest:hover {
  color: #bd081c;
}

.fa-medium {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-medium:hover {
  color: #00AB6C;
}

.fa-codepen {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-codepen:hover {
  color: black;
}

.fa-rss-square {
  padding: 5px;
  -webkit-transition: 0.3;
  -o-transition: 0.3;
  -ms-transition: 0.3;
  -moz-transition: 0.3;
  transition: 0.3;
}
.fa-rss-square:hover {
  color: #ff6600;
}

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