:root {
  --light: #f2f5f8;
  --dark: #090d11;
  color: --dcol();
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 18px;
}

@media (min-width: 800px) {
  :root {
    font-size: 2.2vw;
  }
}

body {
  background-color: var(--light);
}

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

p {
  font-size: 1.05em;
  line-height: 1.5em;
}

@media (min-width: 1060px) {
  p {
    font-size: 26px;
  }
}

h1 {
  font-family: 'Brygada 1918', serif;
  font-size: 2.1em;
  font-weight: 400;
  text-align: center;
}

h2 {
  font-family: 'Brygada 1918', serif;
  font-size: 1.4em;
  font-weight: 400;
  text-align: center;
}

.entry-content, .main-header-content {
  padding: 60px 40px 60px 40px;
  z-index: 2;
}

@media (max-width: 700px) {
  .entry-content {
    padding: 40px 10px 40px 10px;
  }
}

/* Specific content containers */
.entry-content-article {
  columns: 350px 2;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}

.entry-content-article p {
  margin-top: 0;
}

.fullscreen-entry {
  min-height: 100vh;
  min-width: 100vw;
}

.space-background {
  background-image: url("front-page-full-screen-background.jpg");
  z-index: -2;
}

.light-background {
 background-color: var(--light);
}

#main-header {
  background-attachment: fixed;
  background-color: var(--dark);
  background-position: 50% 50%;
  background-size: cover;
  color: var(--light);
}

.main-header-liner {
  min-height: 100vh;
  min-width: 100vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, rgba(2, 0, 36, 0.3) 50%);
  background: -webkit-linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, rgba(2, 0, 36, 0.3) 50%);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, rgba(2, 0, 36, 0.3) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#020024", GradientType=1);
}

.circle-of-weird {
  background-image: url("front-page-full-screen-background.jpg");
  position: fixed;
  width: 100%;
  height: 100%;
  clip-path: circle(50vh at center);
  transform: rotate(180deg);
  z-index: 0;
}

.main-header ~ * {
  position: relative;
  z-index: 3;
}

.a-bit-smaller {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85em;
}

.main-header-caption * {
  margin-bottom: 10px;
}

@keyframes link-border-change {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.box-link {
  animation: link-border-change 4s infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  border: 1px solid var(--light);
  border-radius: 2px;
  color: var(--light);
  margin-left: 10px;
  padding: 3px 4px 3px 4px;
}

.dark {
  border: none;
  color: var(--dark);
  padding: 0;
  margin: 0;
}

.no-border {
border: 0;
padding: 0;
margin: 0;
}

.center {
  text-align: center;
}

.remove-spacing {
  margin: 0;
}

.main-header-content {
  padding-left: 20px;
  padding-right: 20px;
}

#first-entry {
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry-content h2 {
  padding: 0 10px 1em 10px;
}

#second-entry, #fourth-entry, #sixth-entry {
  background-position: 50% 50%;
  background-size: cover;
  color: var(--dark);
  color: var(--light);
  background-attachment: fixed;
}

.entry-liner-gradient {
  min-height: 100vh;
  min-width: 100vw;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, rgba(2, 0, 36, 0.3) 50%);
  background: -webkit-linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, rgba(2, 0, 36, 0.3) 50%);
  background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, rgba(2, 0, 36, 0.3) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#020024", GradientType=1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry-content-one-column {
  max-width: 750px;
}
