@font-face {
    font-family: "Remskii-Eng";
    src: url('../fonts/RemskiiFont/remskii_eng-regular-webfont.woff2') format('woff2'),
         url('../fonts/RemskiiFont/remskii_eng-regular-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Remskii-Script";
    src: url('../fonts/RemskiiFont/remskii_script-regular-webfont.woff2') format('woff2'),
         url('../fonts/RemskiiFont/remskii_script-regular-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
  --background-color: #0b000c;
  --text-color-main: #f7fbef;
  --text-color-special: #bf1fff;
  --tv-glow-color: #f0f0f017;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: calc(0.5vw + 0.5vh);


  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */

}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

#crt-border {
  position: fixed;
  top: calc(-5vh + 70px);
  border: calc(3px + (3vh + 3vw)) solid rgba(0, 0, 0, 1);
  border-radius: calc(20px + 4vh + 4vw);
  height: calc(110vh - 70px);
  width: 105vw;
  background-color: transparent;
  left: -2.5vw;
}

#crt-border-glow {
  position: fixed;
  top: 70px;
  height: calc(100vh - 70px);
  width: 100vw;
  box-shadow: inset 0 0 calc(40px + (3vh + 3vw)) var(--tv-glow-color);
  background-color: transparent;
  margin: 0 auto;
  align-items: center;
  pointer-events: none;
}

body {
  background-color: var(--background-color);
  color: var(--text-color-main);
}

h1 {
  font-family: "Remskii-eng";
  color: var(--text-color-special);
  font-size: calc(70px + 1vw + 1vh);
  word-spacing: 20px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}

navbar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 3px solid var(--text-color-main);
  height: 70px;
  background-color: black;
}

#header-title {
  transition: 0.3s;
}

#header-title-box {
  display: flex;
  height: 100%;
  width: 20%;
  justify-content: center;
  align-items: center;
}

navbar a{
  transition: 0.5s;
  font-family: "Remskii-eng";
  font-size: calc(15px + 1.8vw);
  text-decoration: none;
  text-align: center;
  color: var(--text-color-main);
}

navbar a:hover {
  transition: 0.5s;
  color: var(--text-color-special);
}

#header-title {
  font-family: "Remskii-Script";
  font-size: 100%;
  text-align: center;
  vertical-align: center;
}

#header-title:hover {
  font-family: "Remskii-eng";
  font-size: 120%;
  margin-top: 4%;
}

#blog {
  margin: 80px;
  margin-top: 130px;
  display: flex;
  flex-direction: column;
}

.blog-post-body{
  display: flex;
  flex-direction: row;
  gap: 2.5%;
}

.blog-post-image {
  width: 45%;
}

.blog-post-text {
  font-size: calc(10px + 1vw);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-post-title{
  font-size: calc(30px + 1vw);
}

.blog-post-date {
  font-size: calc(15px + 0.5vw);
}