@font-face {
    font-family: Neuropol;
    src: url(../../Assets/fonts/Neuropol.otf);
}
@font-face {
    font-family: FakeReceipt;
    src: url(../../Assets/fonts/Fake\ Receipt.otf);
}
@font-face {
    font-family: Porsch;
    src: url(../../Assets/fonts/911porschav3.ttf);
}

:root {
    --primary: rgb(63, 21, 21);
    --secondary: rgb(88, 18, 18);
}

body {
    margin: 0px 0px 0px 0px;
    overflow-x: hidden;
}

@keyframes panBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100vw 0;
  }
}

#BannerText {
    font-family: Porsch;
    color: white;
    font-size: 4vh;
    margin-left: 2vw;
}

#PanningBG {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 500vh;
    background-image: url('../../Assets/Home/BloodShotBG.webp'); /* Replace with your image */
    background-repeat: repeat;
    background-size: contain;
    animation: panBackground 100s linear infinite;
    z-index: -50;
}
#ContentBox {
    width: 99.75%;
    background-color: var(--primary);
    border-style: solid;
    border-color: var(--secondary);
    border-width: 4px;
    margin-left: auto;
    margin-right: auto;
}
#FlexBox {
    display: flex;
    flex-flow: row;
    justify-content: center;
    margin: 10px 15px 10px 15px;
}
#InfoBox {
    width: 30vw;
    height: 30vh;
    background-color: var(--secondary);
    background: linear-gradient(0deg,rgba(88, 18, 18, 1) 7%, rgba(63, 21, 21, 1) 62%, rgba(110, 44, 44, 1) 79%, rgba(194, 87, 87, 1) 100%);
    margin-left: 5px;
    margin-right: 5px;
    border-style: ridge;
    border-color: var(--secondary);
    border-width: 0.4vh;
    overflow-y: scroll;
}
#InfoBox h1 {
    font-family: Neuropol;
    margin-left: 1vw;
    font-size: 2vw;
    color: red;
    -webkit-text-stroke: 3px rgb(255, 255, 255);
    paint-order: stroke fill;
    text-shadow: 0px 5px 7px rgb(0, 0, 0);
}
#InfoBox p {
    font-family: FakeReceipt;
    font-size: 1.1vw;
    color: rgb(221, 206, 119);
    margin-left: 2vw;
}
#InfoBoxSmall {
    width: 30vw;
    height: 20vh;
    background-color: var(--secondary);
    background: linear-gradient(0deg,rgba(88, 18, 18, 1) 7%, rgba(63, 21, 21, 1) 62%, rgba(110, 44, 44, 1) 79%, rgba(194, 87, 87, 1) 100%);
    margin-left: 5px;
    margin-right: 5px;
    border-style: ridge;
    border-color: var(--secondary);
    border-width: 0.4vh;
}
#InfoBoxSmall h1 {
    font-family: Neuropol;
    margin-left: 1vw;
    font-size: 1.75vw;
    color: red;
    -webkit-text-stroke: 3px rgb(255, 255, 255);
    paint-order: stroke fill;
    text-shadow: 0px 5px 7px rgb(0, 0, 0);
}
#Me {
    position: absolute;
    right: 18vw;
    width: 68vh;
    top: 16vh;
}
#SpinText {
    position: absolute;
    left: -5vw;
    width: 50vw;
    top: 16vh;
}
#leftMarq {
    position: absolute;
    height: 68vh;
    width: 100%;
    top: 16vh;
}
@font-face {
    font-family: Nuklear;
    src: url(../../Assets/fonts/NUKLEAR.ttf);
}
#metalheartText {
    position: absolute;
    top: 10vh;
    font-family: Nuklear;
    -webkit-text-stroke: 3px rgb(255, 255, 255);
    paint-order: stroke fill;
    font-size: 20px;
    letter-spacing: 8px;
}
#NavBar {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 0px;
    width: 98vw;
    left: 0;
    right: 0;
    margin-inline: auto;
}
#NavItem {
    height: 4vh;
    flex-grow: 1;
    background-color: var(--secondary);
    background: linear-gradient(0deg,rgba(38, 0, 0, 1) 0%, rgba(102, 0, 0, 1) 50%, rgba(130, 60, 60, 1) 52%, rgba(217, 126, 126, 1) 100%);
    box-shadow: 0px -2px 15px rgb(0, 0, 0) inset;
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 0.2vw;

    line-height: 4vh;
}
#NavItem p {
    display: inline-block;
    width: 100%;
    height: 100%;

    font-family: Nuklear;
    text-align: center;
    vertical-align: middle;
    font-size: 1.1vw;

    -webkit-transform:scale(0.75,1.25); /* Safari and Chrome */
    -moz-transform:scale(0.75,1.25); /* Firefox */
    -ms-transform:scale(0.75,1.25); /* IE 9 */
    -o-transform:scale(0.75,1.25); /* Opera */
    transform:scale(0.75,1.25); /* W3C */

    color: white;
    -webkit-text-stroke: 1.5px rgb(185, 185, 185);
    text-shadow: 0px 0px 10px rgb(255, 187, 0);
    margin-top: 0px;
}