@import url("https://use.typekit.net/dql0rld.css");
@import url(https://fonts.googleapis.com/css?family=Neucha);
@import url(https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/themes/prism-tomorrow.min.css);

.site {
    background-color: #F8F3F1;
}

.post-feed .post {
    border: 2px solid #000;
    box-shadow: -2px 2px 1px #000;
    padding-left: 10px;
    padding-right: 10px;
    transition-duration: 5ms;
}

.post-feed .post:hover {
    border: 2px solid #000;
    box-shadow: -3px 3px 0px #000;
    top: -4px;
    left: -4px;
}

h1,
.gh-article-title {
    font-family: novel-display-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 45px;
    line-height: 1.2em;
}

h2 {
    font-family: novel-display-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.gh-article-meta,
.gh-head-menu {
    display: none;
}

.gh-article-header {
    padding-top: 20px;
    padding-bottom: 40px;
}

.gh-subscribe {
    margin: 0;
}

.gh-article-image {
    display: none;
}

.gh-head {
    background-color: transparent;
}

.post-feed .featured .post-link:before {
    background: linear-gradient(0deg, rgba(0, 0, 0, .1), transparent);
}

.post-feed .featured {
    min-height: 280px;
}

.post-feed .u-object-fit {
    object-fit: contain;
    top: 0px;
    height: 55%;
}

.post-feed .featured .post-title,
.post-feed .featured .post-more {
    color: #333;
}

.post-feed .featured .post-wrapper {
    padding: 0px;
}

.post-feed .featured .post-tag {
    display: none;
}

.post-feed.gh-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    /* Space between groups */
}

.post-feed .post {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 2px;
    /* Spacing between posts */
}

.post-feed {
    gap: 20px;
}


/* Adjustments for larger screens */
@media (min-width: 768px) {
    .post-feed.gh-feed {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 20px;
        /* Space between groups */
    }

    .post-feed .post {
        display: flex;
        flex-direction: column;
        width: 100%;
        box-shadow: -4px 4px 1px #000;
    }

    .post-feed {
        gap: 20px;
    }

    .post-feed .featured .post-wrapper {
        padding-bottom: 0px;
    }

    .topContainer {
        flex-direction: column
    }
}

.filter-button.active {
    background-color: #007bff;
    /* Example: Blue background */
    color: white;
    /* White text */
    border: 1px solid #0056b3;
    /* Darker blue border */
}

.filter-button {
    border-radius: 100px;
    padding: 4px 10px;
    font-family: "Neucha";
    font-size: 20px;
    margin-bottom: 14px;
    margin-right: 5px;
}

.filter-button:hover {
    background-color: #333;
    color: white;
}

#websiteIntro {
    padding-bottom: 20px;
}

#websiteIntro > h1 {
    padding-bottom: 20px;
}


button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
    
.image__container {
  min-width: 100%;
  position: relative;
}

.image__container img, .image__container video {
  width: 100%;
}

.image__container:hover #top1 {
  opacity: 1;
}

#top1 {
  position: relative; 
  opacity: 1;
  left: 0;
}

.image__container:hover #top {
  opacity: 1;
}

.topContainer {
    display: flex;
    flex-direction: row;
    width: 85%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 40px;
}

#websiteIntro {
    flex: 5; 
    padding-right: 60px;
}

#imageIntro {
    flex: 5; 
    margin-left: 40px;
}

.site-main.gh-inner {
    width: 80%;
    margin: 0 auto;
}

/* Adjustments for larger screens */
@media (max-width: 768px) {
    .topContainer {
        width: 100%;
        flex-direction: column;
        margin-top: 70px;
    }

    .site-main.gh-inner {
        width: 95%;
        margin: 0 auto;
    }

    #imageIntro {
        margin-left: 0px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    #websiteIntro {
        padding-right: 0px;
    }
}