/*
//FONT: Source Code Pro, use for body
//<weight>: Use a value from 200 to 900   
.source-code-pro-normal {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

//FONT: Quicksand, use for body
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 700
.quicksand-<uniquifier> {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

//FONT: Lora, use for titles
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 700
.lora-<uniquifier> {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

@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%;
}

#project-section{
  margin: 5%;
  margin-top: 8%;
  display: flex;
  flex-direction: row;
  gap: 0%;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: center;
}

#cover-art {
  width: 50%;
  min-width: 50vh;
}

#cover-art-image {
  width: 90%;
  margin-top: 2%;
  padding: 2%;
  vertical-align: middle;
}

#about-section {
  width: 50%;
  margin-top: 2%;
  min-width: 60vh;
}

#album-title{
  font-size: calc(50px + 2vw);
}

#album-about {
  font-size: calc(15px + 0.5vw);
}

