<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Insert CSS Below */

@import url('https://fonts.googleapis.com/css2?family=Poppins&amp;display=swap');
/* config */
:root {
  /* basic config*/
  --primary-color-fg: #fefefe;
  --primary-color-bg: #231f20;
  --nav-coulour-fg: var(--primary-color-fg);
  --nav-color-bg: var(--primary-color-bg);
  --secondary-color-fg: var(--primary-color-fg);
  --secondary-color-bg: var(--primary-color-bg);
  --accent-color: unset;
  --font-face: Poppins;
  --base-font-size: 1.2rem;
 
  
  --btn-color-fg: var(--primary-color-fg);
  --btn-color-bg: var(--primary-color-bg);
   
}

/* Overwrite all theme fonts */
body {
  font-family: var(--font-face), sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
footer p,
footer pre,
footer ul li a {
  font-family: var(--font-face), sans-serif;
}
body {
  font-size: var(--base-font-size);
}

h1, .article-title {
  font-size: 2.3rem;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
	font-size: 1.6rem;
}

h5 {
  font-size: 1.3rem;
}


body {
  margin-top: 0px;
  background-color: #fff;
}


.site-header {
  background-color: var(--primary-color-bg);
  padding: 20px;
  width: 100vw; 
  margin-left: calc((-100vw + 100%) / 2);
  margin-right: calc((-100vw + 100%) / 2);
  font-size: 0.9rem;
}

@media (min-width: 1200px) {
  .site-header {
    padding-inline: 50px;
    font-size: 1.1rem;
  }
}

.navbar-custom {
  background-color: var(--primary-color-bg);
}
.journal-title {
  height:100px;
}
@media (min-width: 768px) {
  #journal-title &gt; .row:first-child &gt; .col-md-2:first-child {
    -ms-flex: 0 0 25.333333%;
    flex: 0 0 25.333333%;
    max-width: 25.333333%;
  }
}
@media (min-width: 991px) {  
  #navbarCollapse {
    margin-top: -35px;
  }
}
#navbarCollapse &gt; ul.navbar-nav:first-child {
  margin-left: auto;
  margin-right:unset !important;
}

.site-footer {
  border-top: 0px;
}
.btn-primary {
  color: var(--primary-color-fg);
  background-color: var(--primary-color-bg);
}
.homepage-element-about {
  margin-top: 15px;
}

.dropdown-menu{
  font-size: 1.1rem;
}
.nav-link.dropdown-toggle{
  font-size: 1.1rem;
}

.homepage-element-news{
  .card-title {
    font-size: 1.3rem;
  }
  .card-subtitle {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 1.0rem;
  }
}</pre></body></html>