@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap");
/* Screen sizes */
#message {
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  #message {
    color: #dadada;
  }
}

/* General */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #1b9368;
}
a:hover {
  color: #4d4d4d;
  transition: color 0.2s;
}

.hamburger {
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-right: 7px;
}

body {
  transition: background-color 0.2s ease;
  transition: color 0.2s ease;
  font-family: "Reddit Sans", sans-serif;
  background-color: #ffffff;
  color: #202020;
  color: #dadada;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000000;
    color: #dadada;
  }
}

@media screen and (max-width: 768px) {
  .be-head {
    padding-top: 60px;
  }
}

header {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background: #eeeeee;
  color: #202020;
  padding: 15px;
  position: relative;
  height: 30px;
  width: auto;
}
@media (prefers-color-scheme: dark) {
  header {
    background: #202020;
    color: #dadada;
  }
}
header .desk-menu ul {
  display: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header .desk-menu ul li {
  margin-right: 20px;
}
header .desk-menu ul li a {
  color: #202020;
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  header .desk-menu ul li a {
    color: #dadada;
  }
}
header .desk-menu ul li a:hover {
  color: #1b9368;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  height: 40px;
}
header .mobile-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  header {
    position: fixed;
    width: 96%;
    z-index: 100;
  }
  header .mobile-menu {
    display: flex;
  }
  header .mobile-menu .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .mobile-menu .hamburger:hover span {
    background: #616161;
  }
}
@media screen and (max-width: 768px) and (prefers-color-scheme: dark) {
  header .mobile-menu .hamburger:hover span {
    background: #4d4d4d;
  }
}
@media screen and (max-width: 768px) {
  header .mobile-menu .hamburger span {
    width: 40px;
    height: 2px;
    background: #1b9368;
    margin: 3px;
    transition: transform 0.2s;
  }
  header .mobile-menu ul {
    position: absolute;
    border-bottom: 1px solid rgba(187, 187, 187, 0.4745098039);
    left: 0;
    max-height: 0px;
    overflow: hidden;
    width: 100%;
    background: #eeeeee;
    color: #202020;
    top: 100%;
    z-index: 100;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) and (prefers-color-scheme: dark) {
  header .mobile-menu ul {
    background: #202020;
    color: #dadada;
  }
}
@media screen and (max-width: 768px) {
  header .mobile-menu ul li {
    display: block;
    padding: 30px;
    display: flex;
    border-bottom: 1px solid rgba(187, 187, 187, 0.4745098039);
    justify-content: center;
    align-items: center;
  }
  header .mobile-menu ul li:last-child {
    border-bottom: none;
  }
  header .mobile-menu ul li a {
    color: #202020;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) and (prefers-color-scheme: dark) {
  header .mobile-menu ul li a {
    color: #dadada;
  }
}
@media screen and (max-width: 768px) {
  header .mobile-menu ul li a:hover {
    color: #1b9368;
  }
  header .desk-menu {
    display: none;
  }
}

.container {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 5px;
  }
}

p {
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  p {
    color: #dadada;
  }
}

.h1-highlight {
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 15px;
  color: #202020;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (prefers-color-scheme: dark) {
  .h1-highlight {
    color: #dadada;
  }
}
.h1-highlight:before {
  border-left: 3px solid #1b9368;
  content: "";
  margin-right: 5px;
}

.h3-highlight {
  border-bottom: 1px solid #1b9368;
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 15px;
  color: #202020;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .h3-highlight {
    color: #dadada;
  }
}

.h2-highlight {
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 15px;
  color: #202020;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .h2-highlight {
    color: #dadada;
  }
}
.h2-highlight:before {
  border-left: 3px solid #1b9368;
  content: "";
  margin-right: 5px;
}

.highlight {
  border-bottom: 1px solid #1b9368;
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 15px;
  color: #202020;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .highlight {
    color: #dadada;
  }
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}
main .hero {
  position: relative;
}
main .hero .container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 500px;
  align-items: flex-end;
  line-height: 0.5;
}
main .hero .container svg * {
  overflow: hidden;
  z-index: 20;
}
main .hero .container .hero-logo {
  position: absolute;
  margin-top: 80px;
  margin-right: 50px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  main .hero .container .hero-logo svg {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  main .hero .container .hero-logo svg {
    margin-right: 0px;
  }
}
main .hero .container .hero-logo #left-piece {
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
main .hero .container .hero-logo #right-piece {
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
main .hero .container .hero-logo #mid-piece {
  animation: fade-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 300ms;
}
main .hero-text {
  margin-bottom: 50px;
  margin-left: 50px;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  main .hero-text {
    color: #dadada;
  }
}
main .hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
}
main .hero-text p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  main .hero-text {
    margin-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  main .hero-text {
    margin-left: 0;
  }
  main .hero-text h1 {
    font-size: 2rem;
  }
  main .hero-text p {
    font-size: 1rem;
  }
}

.h1-404 {
  font-size: 3rem;
  font-weight: 600;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .h1-404 {
    color: #dadada;
  }
}

.topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-row-gap: 8px;
  grid-column-gap: 8px;
}
@media screen and (max-width: 768px) {
  .topics {
    grid-template-columns: 1fr;
  }
}
.topics .topic {
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  z-index: 2;
  position: relative;
  transition: all 0.2s;
}
.topics .topic:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.topics .topic:hover .overlay {
  border-radius: unset;
  box-shadow: unset;
  backdrop-filter: unset;
  -webkit-backdrop-filter: unset;
}
.topics .topic:hover .overlay p {
  transition: transform 0.2s;
  transform: scale(1.05);
}
.topics .topic img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
  position: absolute;
}
.topics .topic .overlay {
  background: rgba(0, 0, 0, 0.23);
  border-radius: 13px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.topics .topic .overlay p {
  transition: transform 0.2s;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sec-container {
  margin: 7px;
}
@media screen and (max-width: 768px) {
  .sec-container {
    margin-left: 0;
    margin-right: 0;
  }
}

.article-card {
  background: #eeeeee;
  color: #202020;
  padding: 20px;
  padding-bottom: 40px;
  border-radius: 13px;
  margin: 7px;
  margin-bottom: 5px;
  height: 160px;
  line-height: 0;
}
@media (prefers-color-scheme: dark) {
  .article-card {
    background: #202020;
    color: #dadada;
  }
}
@media screen and (max-width: 768px) {
  .article-card {
    margin-left: 0;
    margin-right: 0;
  }
}
.article-card p {
  font-size: 1rem;
}
.article-card a {
  color: #1b9368;
}
@media (prefers-color-scheme: dark) {
  .article-card a {
    color: #1b9368;
  }
}
.article-card .article-info .article-card-header {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
}
.article-card .article-info .article-card-header a {
  color: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-card .article-info .article-card-header:hover {
  color: #8f8f8f;
}
.article-card .article-info .article-card-interactions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.article-card .article-info .article-card-interactions span {
  display: flex;
  align-items: center;
  color: #464646;
  background-color: #dadada;
  padding: 14px;
  border-radius: 13px;
  font-size: 0.8rem;
}
@media (prefers-color-scheme: dark) {
  .article-card .article-info .article-card-interactions span {
    background-color: #313131;
    color: #c0c0c0;
  }
}
.article-card .article-info .article-card-interactions a {
  color: #c0c0c0;
}
@media (prefers-color-scheme: dark) {
  .article-card .article-info .article-card-interactions a {
    color: #c0c0c0;
  }
}

.tag {
  margin-right: 8px;
  color: #464646;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (prefers-color-scheme: dark) {
  .tag {
    color: #c0c0c0;
  }
}

ol {
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  ol {
    color: #dadada;
  }
}

.article-card-author {
  display: flex;
  gap: 5px;
  line-height: 0.4;
  align-items: center;
  line-height: 0.2rem;
  margin-bottom: -8px;
  /* first child of p */
}
.article-card-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background: #8f8f8f;
  padding: 10px;
}
.article-card-author p {
  color: #464646;
}
@media (prefers-color-scheme: dark) {
  .article-card-author p {
    color: #dadada;
  }
}
.article-card-author p:first-child {
  font-weight: 600;
}

.a-button {
  background: #262626;
  color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
@media (prefers-color-scheme: dark) {
  .a-button {
    background: #262626;
    color: #dadada;
  }
}
.a-button:hover {
  background: #1b9368;
}
@media (prefers-color-scheme: dark) {
  .a-button:hover {
    background: #1b9368;
    color: #4d4d4d;
  }
}

#current-article .banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#current-article .banner-container .banner {
  display: flex;
  align-self: center;
  justify-self: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

pre code {
  border-radius: 7px;
}

.single-article {
  background: #ececec;
  padding-bottom: 20px;
}
@media (prefers-color-scheme: dark) {
  .single-article {
    background: #121212;
  }
}
.single-article .tags-content {
  display: flex;
  gap: 0px;
  margin-top: 20px;
}
.single-article p > code {
  border-radius: 3px;
  padding: 2px;
  background: #dadada;
  color: #c84f4e;
}
@media (prefers-color-scheme: dark) {
  .single-article p > code {
    background: #202020;
  }
}
.single-article li > code {
  border-radius: 3px;
  padding: 2px;
  background: #dadada;
  color: #c84f4e;
}
@media (prefers-color-scheme: dark) {
  .single-article li > code {
    background: #202020;
  }
}
.single-article h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .single-article h1 {
    color: #dadada;
  }
}
.single-article h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .single-article h2 {
    color: #dadada;
  }
}
.single-article h3 {
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: unset;
  margin-bottom: unset;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .single-article h3 {
    color: #dadada;
  }
}
.single-article h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .single-article h4 {
    color: #dadada;
  }
}
.single-article ul {
  padding-top: 10px;
  list-style: disc;
  padding-left: 20px;
}
.single-article ul li {
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .single-article ul li {
    color: #dadada;
  }
}

.likes-div {
  padding-top: 30px;
}
.likes-div .likes-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px;
  border-radius: 7px;
  background: rgba(187, 187, 187, 0.4745098039);
  transition: all 0.2s;
  color: #464646;
}
@media (prefers-color-scheme: dark) {
  .likes-div .likes-tag {
    background: #262626;
    color: #c0c0c0;
  }
}
.likes-div .likes-tag:hover {
  cursor: pointer;
  background: #1b9368;
}
@media (prefers-color-scheme: dark) {
  .likes-div .likes-tag:hover {
    background: #1b9368;
    color: #4d4d4d;
  }
}

#comments {
  padding: 15px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#comments .comment-parent {
  display: flex;
  flex-direction: row;
}
#comments .comment-parent .author-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-top: 5px;
  background: #eeeeee;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
#comments .comment-parent .author-banner img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 40px;
  height: 40px;
}
#comments .comment-parent .comment {
  border: 1px solid #8f8f8f;
  border-radius: 13px;
  flex-grow: 1;
  padding: 10px;
}
#comments .comment-parent .comment .author-info {
  display: flex;
  flex-direction: row;
}
#comments .comment-parent .comment .author-info p:nth-child(1)::after {
  content: "•";
  color: #464646;
  margin-left: 5px;
  margin-right: 5px;
}
@media (prefers-color-scheme: dark) {
  #comments .comment-parent .comment .author-info p:nth-child(1)::after {
    color: #c0c0c0;
  }
}
#comments .comment-parent .comment .author-info p:nth-child(1) {
  color: #464646;
}
@media (prefers-color-scheme: dark) {
  #comments .comment-parent .comment .author-info p:nth-child(1) {
    color: #8f8f8f;
  }
}

hr {
  border: 1px solid rgba(187, 187, 187, 0.4745098039);
  margin-top: 15px;
  margin-bottom: 15px;
  width: 98%;
}
@media (prefers-color-scheme: dark) {
  hr {
    border: 1px solid #323232;
  }
}

.text-container {
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .text-container {
    margin-left: 8px;
    margin-right: 8px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form label {
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  form label {
    color: #dadada;
  }
}
form input {
  padding: 10px;
  border-radius: 7px;
  border: none;
  background: #eeeeee;
  color: #202020;
  width: 300px;
}
form input:focus {
  outline: solid 2px #1b9368;
}
@media (prefers-color-scheme: dark) {
  form input {
    background: #262626;
    color: #dadada;
  }
}
form textarea {
  padding: 10px;
  border-radius: 13px;
  border: none;
  background: #eeeeee;
  resize: none;
  color: #202020;
}
form textarea:focus {
  outline: solid 2px #1b9368;
}
@media (prefers-color-scheme: dark) {
  form textarea {
    background: #262626;
    color: #dadada;
  }
}

.topic-filter {
  display: flex;
  flex-direction: row;
  gap: 13px;
  color: #c0c0c0;
  margin-left: 13px;
  margin-bottom: 30px;
}
.topic-filter .active-filter {
  color: #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
}
.topic-filter li:hover {
  color: #8f8f8f;
  cursor: pointer;
}
.topic-filter option {
  color: #4d4d4d;
}
@media (prefers-color-scheme: dark) {
  .topic-filter option {
    color: #c0c0c0;
  }
}
.topic-filter option .active-filter {
  color: #262626;
  border-bottom: 1px solid #8f8f8f;
}
@media (prefers-color-scheme: dark) {
  .topic-filter option .active-filter {
    border-bottom: 1px solid #8f8f8f;
    color: #8f8f8f;
  }
}
.topic-filter option:hover {
  color: #8f8f8f;
  cursor: pointer;
}

#all-articles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media screen and (max-width: 768px) {
  #all-articles {
    grid-template-columns: minmax(0, 1fr);
  }
}
#all-articles .article-card .article-info .article-card-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.articles-pages {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 13px;
  margin-top: 30px;
  color: #4d4d4d;
}
@media (prefers-color-scheme: dark) {
  .articles-pages {
    color: #c0c0c0;
  }
}
.articles-pages .active-page {
  color: #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
}
.articles-pages li:hover {
  color: #8f8f8f;
  cursor: pointer;
}

.author-card {
  background: #eeeeee;
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  padding: 20px;
  position: relative;
  padding-top: 120px;
}
@media (prefers-color-scheme: dark) {
  .author-card {
    background: #262626;
  }
}
.author-card img {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-self: center;
  justify-self: center;
  width: 200px;
  height: 200px;
  border: 13px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: translateY(-55%);
}
@media (prefers-color-scheme: dark) {
  .author-card img {
    border: 10px solid #000000;
  }
}
.author-card .author-site-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 2px;
  font-weight: 600;
}
.author-card .author-site-info h2 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #202020;
}
@media (prefers-color-scheme: dark) {
  .author-card .author-site-info h2 {
    color: #dadada;
  }
}

select {
  padding: 10px;
  border-radius: 7px;
  border: none;
  background: #eeeeee;
  color: #202020;
  width: 320px;
}
select:focus {
  outline: solid 2px #1b9368;
}
@media (prefers-color-scheme: dark) {
  select {
    background: #262626;
    color: #dadada;
  }
}

textarea {
  font-family: "Reddit Sans", sans-serif;
}

.footer-container {
  background: #eeeeee;
  color: #202020;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container a > img {
  width: 50px;
  height: 40px;
  margin-right: 10px;
}
@media (prefers-color-scheme: dark) {
  .footer-container {
    background: #202020;
    color: #dadada;
  }
}
/* Animations */
@keyframes slide-left {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */