
.roboto-mono {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.nova-cut-regular {
  font-family: "Nova Cut", system-ui;
  font-weight: 400;
  font-style: normal;
}

p{
    font-family: "Roboto Mono", monospace;
    color: aliceblue;
    margin-right: 30px;
}


ul li{
    padding: 3px;
    list-style-type: "⯎";
    list-style-position: inside;
    color: aliceblue;   
}

.indent{
    padding-inline-start: 20px;
}

.fpadding{
    padding-left: 0;
}

li{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
}

li a{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
    
}



h1{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
    margin: 0%;
    padding: 0%;
    text-align: center;
    margin-top: 10px;
}

h2{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
    border-bottom: 5px double;
    border-color: red;
    width: 85%;
    margin: 0%;
}
h3{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
    border-bottom: 5px double;
    border-color: red;
    width: 50%;
    margin: 15px;
}
h4{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
    font-size: large;
    margin: 0px;
    margin-top: 3px;
    margin-left: 3px;
}
h5{
    font-family: "Nova Cut";
    font-style: italic;
    color: aliceblue;
    font-size: large;
    margin: 0%;
    margin-top: 10px;
    border-bottom: 3px double;
    width: 50%;
}

.sticky{
    position: sticky;
    top: 0;
    background-image: url(../img/cobblestone_1.gif);
    margin-top: 0;
    padding-top: 0;
}

p em{
    color: red;
    font-family: "Nova Cut";
}

li a:hover {
  color: rgb(255, 0, 0);
}

ul li:hover{
    list-style-type: "⯌";
    color: red;
}


.jsright{
    float: right;
    margin: 10px;
}

.lilrightimages{
    float: right;
    width: 200px;
    margin: 10px;
}

.right{
    float: right;
    width: 250px;
    margin-left: 30px;
    margin-right: 50px;
    
}

.divider{
    margin: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}


.righttop:hover {
    opacity: 0;
}

.rightbottom:hover {
    opacity: 0;
}

.righttop{
    width: 400px;
    z-index: 1;
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.rightbottom{
    width: 300px;
    z-index: 1;
    position: absolute;
    bottom: 5px;
    right: 5px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.liltext{
    text-align: center;
    padding-right: 70px;
    margin: 40px;
}

.textlinks{
    font-family: "Nova Cut";
    font-size: x-large;
    color: aliceblue;
}


body{
    background-image: url(../img/4ecab961bf5fa18443fd350bc3069748.jpg);
    padding: 0;
    margin: 0;
}

.bgimg{
    height: 200%;
    width: 200%;
    object-fit: contain
}

.imgborder {
animation: borderPulse 5s infinite;
border: 8px double;
overflow: auto;
}
 
@keyframes borderPulse {
25% {border-color: #f00;}
50% {border-color: rgb(255, 157, 0);}
75% {border-color: rgb(238, 255, 0);}
}



.container {  display: grid;
    grid-template-columns: 0.8fr 1fr 1fr 1fr 0.1fr;
    grid-template-rows: 100px 1fr 0.5fr 0.5fr;
    gap: 3px 5px;
    grid-auto-flow: row;
    grid-template-areas:
    "Header Header Header Header Header"
    "Side1 Main Main Main ."
    "Side1 Main Main Main ."
    "Side1 Main Main Main .";
    height: 100vh;
}

.index{ 
    background-image: url(../img/landing2.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: cover;
}

.Header {
    grid-area: Header;
    border:8px double rgb(234, 0, 66);
    background-image: url(../img/cobblestone_1.gif);
    border-radius: 3px;
    margin: 10px;
    margin-right: 30px;
    margin-left: 30px;
}

.Main {
    grid-area: Main;
    border:8px double rgb(234, 0, 66);
    padding: 20px;
    background-image: url(../img/cobblestone_1.gif);
    border-radius: 3px;
    overflow: auto;
    margin: 10px;
    margin-right: 30px;
    margin-left: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgb(234, 0, 66) black;
}

.containercontainer{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 2fr 200px 200px 200px;
    gap: 5px;
    grid-auto-flow: row;
    grid-template-areas:
    "intro intro intro"
    "inhalt inhalt diary "
    "inhalt inhalt diary "
    "roadmap roadmap diary";
}


.intro{
    grid-area: intro;
    padding: 10px;
    padding-top: 0;
    margin: 10px;
    margin-right: 30px;
    margin-left: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgb(234, 0, 66) black;
}

.inhalt{
    grid-area: inhalt;
    padding: 10px;
    padding-top: 0;
    margin-right: 10px;
    margin-left: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgb(234, 0, 66) black;
    
    overflow: auto;
}

.diary{
    grid-area: diary;
    background-color: #000;
    padding: 15px;
    margin-right: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgb(234, 0, 66) black;
    border:3px double rgb(234, 0, 66);
    overflow: auto;
}

.roadmap{
    grid-area: roadmap;
    padding: 15px;
    padding-top: 0;
    margin-right: 10px;
    margin-left: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgb(234, 0, 66) black;
    
    overflow: auto;
}

.Side1 { 
    grid-area: Side1;
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-template-rows: 1.2fr 0.5fr 0.5fr; 
    gap: 10px 0px; 
    grid-template-areas: 
    "nav"
    "misc1"
    "misc2";
    
    padding: 10px;
    margin: 0px;
    margin-left: 30px;
    
}

.nav { 
    grid-area: nav;
    border:8px double rgb(234, 0, 66);
    background-image: url(../img/cobblestone_1.gif);
    padding: 10px;
    border-radius: 3px;
    overflow: auto;
    scrollbar-width: none;
}
.misc1 { 
    grid-area: misc1; 
    border:8px double rgb(234, 0, 66);
    background-image: url(../img/cobblestone_1.gif);
    padding: 10px;

    border-radius: 3px;
}
.misc2 { 
    grid-area: misc2; 
    border:8px double rgb(234, 0, 66);
    border-radius: 3px;
    background-image: url(../img/cobblestone_1.gif);
}

body {overflow-y: hidden;} /*Hides the scrollbar while loading.*/
#loadingScreen {
    position: fixed; /*Keeps the loading screen fixed on the screen */
    inset: 0; /*Makes loading screen wrap full screen.*/
    z-index: 999999; /*Makes loading screen stay on top.*/
    user-select: none; /*Disables user interaction with loading screen.*/
    transition: opacity 300ms; /*Adds a nice fading effect.*/
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
}
#loadingScreen::after {
    content: '';
    animation: loadingDots 1s linear infinite;
}
@keyframes loadingDots {
    0%, 100% {content: '';}
    25% {content: '.';}
    50% {content: '..';}
    75% {content: '...';}
}
.loadingscreen{
    font-family: "Nova Cut";
}

