/* fonts */

*{
margin: 0;
font-family: "IBM Plex Mono", monospace;
/* border: 1px solid red; */
}


::selection {
background-color: blue;
opacity: 100;
color: white;
}

@font-face {
font-family: "Ortica Angular";
src: url(./ortica_web/OrticaAngular-Bold.woff2);
}

.ibm-plex-mono-thin {
font-family: "IBM Plex Mono", monospace;
font-weight: 100;
font-style: normal;
}

.ibm-plex-mono-extralight {
font-family: "IBM Plex Mono", monospace;
font-weight: 200;
font-style: normal;
}

.ibm-plex-mono-light {
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
font-style: normal;
}

.ibm-plex-mono-regular {
font-family: "IBM Plex Mono", monospace;
font-weight: 400;
font-style: normal;
}

.ibm-plex-mono-medium {
font-family: "IBM Plex Mono", monospace;
font-weight: 500;
font-style: normal;
}

.ibm-plex-mono-semibold {
font-family: "IBM Plex Mono", monospace;
font-weight: 600;
font-style: normal;
}

.ibm-plex-mono-bold {
font-family: "IBM Plex Mono", monospace;
font-weight: 700;
font-style: normal;
}

.ibm-plex-mono-thin-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 100;
font-style: italic;
}

.ibm-plex-mono-extralight-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 200;
font-style: italic;
}

.ibm-plex-mono-light-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
font-style: italic;
}

.ibm-plex-mono-regular-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 400;
font-style: italic;
}

.ibm-plex-mono-medium-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 500;
font-style: italic;
}

.ibm-plex-mono-semibold-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 600;
font-style: italic;
}

.ibm-plex-mono-bold-italic {
font-family: "IBM Plex Mono", monospace;
font-weight: 700;
font-style: italic;
}  

@keyframes slideUp {
from {
transform: translateY(0);
opacity: 1;
}
to {
transform: translateY(-110%);
opacity: 0;
}
}

#landing-image {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
/* display: none; */
display: flex;
justify-content: center; 
align-items: center;    
z-index: 101;             
}

@media only screen and (max-width: 600px){
#landing-image{
width: 100vw;
overflow-x: none;
margin: auto;
justify-content: center;
align-items: center;
}
}

#landing-image.hidden {
animation: slideUp 3s forwards;
}

.landing-image_logo{
font-size: 60px;
line-height: 50px;
color: white;
z-index: 110;
font-family: 'Ortica Angular';
text-transform: uppercase;
text-align: center;
}

@media only screen and (max-width: 600px){
.landing-image_logo{
font-size: 50px;
line-height: 45px;
}
}
    

.landing-image_img {
position: fixed;
width: 100vw;
height: auto;
z-index: 26;
overflow: none;
}

@media only screen and (max-width: 600px){
.landing-image_img{
height: 100vh;
width: auto;
}
}

.popup {
display: flex;
position: fixed;
justify-content: center; 
align-items: center;  
top: 0;
right: 0;
width: 75%;
height: 100%;
z-index: 80;
}

@media only screen and (max-width: 600px){
.popup{
width: 100vw;
}
}

#popup-overlay {
position: absolute; /* Changed from fixed to absolute */
top: 0;
left: 0; /* Adjusted positioning */
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
z-index: 70; /* Just below the slide content */
}

@media only screen and (max-width: 600px){
    #popup-overlay{
    top: 3rem;
    }
    }

.popup-content {
padding: 50px;
text-align: left;
}

.slide {
display: none; /* Hide all slides initially */
color: #bc1b16;
background-color: white;
border-radius: 4px;
width: 70%;
height: 80%;
margin: auto;  /* Center the slide horizontally and vertically */
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
z-index: 80;
}

@media only screen and (max-width: 600px){
.slide{
width: 90vw;
height: 89%;
margin-bottom: 1rem;
margin: none;
}
}

.slide p{
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
padding-left: 6rem;
padding-right: 6rem;
text-align: center;
}

@media only screen and (max-width: 600px){
.slide p{
padding-left: 3rem;
padding-right: 3rem;
text-align: left;
}
}

.slide.active {
display: block;
}

.slide_header {
align-items: center;
padding-top: 2rem;
padding-bottom: 2rem;
padding-left: 6rem;
padding-right: 6rem;
box-sizing: border-box;
width: 100%;
}

@media only screen and (max-width: 600px){
.slide_header{
width: 60vw;
align-items: center;
justify-content: center;
padding-left: 3rem;
padding-right: 0;
}
}

.slide_header h2{
font-family: "Ortica Angular";
text-align: center;
}

@media only screen and (max-width: 600px){
.slide_header h2{
    text-align: left;
}
}

/* Close button */
.close-popup {
cursor: pointer;
position: absolute;
margin-top: 3rem;
right: 14rem;
z-index: 82;
}

@media only screen and (max-width: 600px){
.close-popup{
margin-top: 2rem;
right: 4rem;
}
}

.close-popup_bar1{
width: 30px;
height: 30px;
border-bottom: 1.5px solid #bc1b16;
transform: rotate(45deg);
font-size: 45px;
position: absolute;
}

.close-popup_bar2{
width: 30px;
height: 30px;
border-bottom: 1.5px solid #bc1b16;
transform: rotate(-45deg);
font-size: 45px;
position: absolute;
margin-left: -1.32rem;
}

.arson-files {
display: flex; /* Hidden by default */
position: fixed;
justify-content: center; 
align-items: center;  
top: 0;
right: 0;
width: 75%;
height: 100%;
z-index: 20;
}

/* Close Button Style */
.close-popup-2 {
cursor: pointer;
position: fixed;
top: 1rem;
right: 1rem;
z-index: 63;
background-color: white;
border-radius: 100%;
width: 2.3rem;
height: 2.3rem;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center;     /* Center vertically */
transition: all 0.3s ease-in-out;
}

.close-popup_bar3, .close-popup_bar4 {
position: absolute;
width: 25px;
height: 20px;
margin-top: -1px;
border-bottom: 1.5px solid #bc1b16;
font-size: 45px;
transition: transform 0.3s ease-in-out; /* Add transition for rotation */
}

.close-popup_bar3 {
transform: rotate(90deg);
right: -4px;
top: 9px;
z-index: 40;
}

.close-popup_bar4 {
transform: rotate(180deg);
top: 19px;
right: 6px;
font-size: 45px;
position: absolute;
z-index: 40;
}

/* Hover Text */
/* Hover Text */
.hover-text {
position: fixed;
font-family: 'Ortica Angular';
font-size: 18px;
top: 2.2rem;
right: 1rem;
transform: translateY(-50%);
background-color: #bc1b16;
color: white;
border: 1.5px white solid;
padding: 5px 5px 5px 15px;
border-radius: 40px;
opacity: 0; /* Hidden by default */
white-space: nowrap;
z-index: 39; /* Behind the button */
width: 9.5rem;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.close-popup-2:hover .hover-text {
right: calc(100% + 1rem); /* Position outside the button when hovering */
opacity: 1;
}

/* Rotate the entire button */
.close-popup-2.rotated {
transform: rotate(45deg);
}

/* Popup Window */
.popup-window {
display: none;
position: fixed;
top: 0;
right: 0;
width: 75vw;
height: 92vh;
z-index: 62;
overflow: scroll;
padding: 1rem;
transition: all 0.3s ease-in-out;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
}

@media only screen and (max-width: 600px){
.close-popup-2{
display: none;
}
}

/* Close button for the popup */
.popup-close {
position: absolute;
top: 0.5rem;
right: 0.5rem;
cursor: pointer;
font-size: 2rem;
color: #bc1b16;
}

.files-slide{
display: flex;
align-items: flex-start;
color: #bc1b16;
background-color: white;
border-radius: 4px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
position: absolute;
top: 1rem;
bottom: 0;
left: 1rem;
right: 1rem;
overflow: scroll;
padding-bottom: 50px;
border-top-right-radius: 20px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}

.files-slide.active {
display: block; /* Show active slide */
}

.main-about_project{
display: flex; /* Hidden by default */
position: fixed;
justify-content: center; 
align-items: center;  
top: 0;
right: 0;
width: 75%;
height: 100%;
z-index: 10;
}

@media only screen and (max-width: 600px){
.main-about_project {
width: 100vw;
left: 0;
}
}

.content-about_project{
display: none;
color: white;
background-color: #bc1b16;
border-radius: 4px;
width: 70%;
height: 70%;
margin: auto;  /* Center the slide horizontally and vertically */
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
border: 2px solid white;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: scroll;
padding-bottom: 2rem;
padding-top: 2rem;
}

@media only screen and (max-width: 600px){
.content-about_project {
width: auto;
margin-left: 1rem;
margin-right: 1rem;
}
}

.content-about_project h2{
align-items: center;
padding-left: 6rem;
padding-right: 6rem;
box-sizing: border-box;
width: 100%;
text-align: center;
font-family: 'Ortica Angular';
}

@media only screen and (max-width: 600px){
.content-about_project h2 {
padding-left: 1rem;
width: 100%;
text-align: left;
}
}

.content-about_project p{
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
padding-left: 6rem;
padding-right: 6rem;
text-align: left;
padding-top: 1rem;
padding-bottom: 1rem;
}

@media only screen and (max-width: 600px){
.content-about_project p {
padding-left: 1rem;
padding-right: 1rem;
max-width: 80vw;
}
}

@media only screen and (max-width: 600px){
    .content-about_project p{
width: 100vw;
left: 0;
margin: auto;
}
}
    

.content-about_project a{
text-decoration: underline;
color: white;
}

.close-popup-3{
position: absolute;
cursor: pointer;
right: 2.6rem;
top: 2.2rem;
z-index: 50;
width: 2rem;
height: 2rem;
display: flex;
justify-content: center;
align-items: center;
}

@media only screen and (max-width: 600px){
.close-popup-3{
top: 2rem;
right: 1rem;
}
}

.close-popup_bar5, .close-popup_bar6 {
display: block;
width: 30px;
height: 1.5px;
background-color: white;
position: absolute;
transition: all 0.3s ease;
font-size: 45px;
}

.close-popup_bar5 {
transform: rotate(45deg);
}

.close-popup_bar6 {
transform: rotate(-45deg);
}

@media only screen and (max-width: 600px){
.close-popup-4 {
position: fixed;
cursor: pointer;
right: 0.5rem;
bottom: 0.5rem;
z-index: 100;
width: 2rem;
height: 2rem;
display: flex !important;
justify-content: center;
align-items: center;
}
.close-popup_bar7, .close-popup_bar8 {
display: block;
width: 30px;
height: 1.5px;
background-color: white;
position: absolute;
transition: all 0.3s ease;
font-size: 45px;
}

.close-popup_bar7 {
transform: rotate(45deg);
}

.close-popup_bar8 {
transform: rotate(-45deg);
}
}


.arson-file_content-menu{
position: sticky;
top: 2rem;
text-align: right;
}

.arson-file_content-maintitle{
font-family: 'Ortica Angular';
font-size: 20px;
padding-bottom: 1rem;
margin-left: 2rem;
}

.arson-file_content-subtitle{
font-weight: 500;
padding-bottom: 5px;
}

.arson-file_content-chapters{
padding-bottom: 15px;
cursor: pointer;
margin-left: 2rem;
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
}

.arson-file_content-chapters:hover{
font-weight: 500;
}

.arson-file_general{
width: 70%;
margin: auto;
}

.arson-file-links{
color: #bc1b16;
}

.arson-file-image-container {
margin: 0; 
padding: 0; 
display: flex;
justify-content: center; 
align-items: center; 
background: #bc1b16;
}

.arson-file-image {
margin: 0;
position: relative;
width: 74%;
}

.arson-file-image-caption{
margin-top: 1rem;
font-size: 13px;
font-weight: 200;
margin-left: 6rem;
width: 30%;
margin-bottom: 1rem;
}

.files-slide h1{
font-family: 'Ortica Angular';
/* text-decoration: underline; */
font-size: 24px;
align-items: center; /* Align items vertically in the center */
padding-top: 2rem;
padding-bottom: 1rem;
padding-left: 6rem;
padding-right: 6rem; /* Add padding to the right for spacing */
box-sizing: border-box; /* Ensure padding is included in the width */
width: 100%; /* Make sure the header takes full width */
text-align: center;
}

.files-slide h2{
font-family: 'Ortica Angular';
align-items: center; /* Align items vertically in the center */
padding-top: 2rem;
padding-bottom: 2rem;
padding-left: 6rem;
padding-right: 6rem; /* Add padding to the right for spacing */
box-sizing: border-box; /* Ensure padding is included in the width */
width: 100%; /* Make sure the header takes full width */
text-align: center;
}

.arson-file-subchapter{
font-family: 'Ortica Angular';
text-align: center;
padding-bottom: 20px;
}

.arson-file-text{
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
padding-left: 6rem;
padding-right: 6rem;
text-align: left;
padding-bottom: 20px;
}

.arson-file-text span{
text-decoration: underline;
cursor: pointer;
}

.files-slide hr{
width: 75%;
align-items: center;
margin: auto;
border: 0.5px solid #bc1b16;
}

.arson-files-quotes{
padding-left: 8rem;
width: auto;
padding-right: 8rem;
font-weight: 500;
margin-bottom: 20px;
}

.arson-file-menu{
display: flex;
justify-content: space-between;
padding-top: 10px;
padding-bottom: 10px;
font-weight: 300;
padding-left: 6rem;
padding-right: 6rem;
cursor: pointer;
}

.arson-file-menu:hover{
font-weight: 500;
}

.arson-file-menu span{
font-size: 20px;
}

/* Navigation buttons */
.popup-navigation {
display: flex;
justify-content: space-between;
top: 20rem;
margin-left: 10rem;
margin-right: 10rem;
z-index: 200;
}

.video-container{
display: flex;
justify-content: space-between;
}

@media only screen and (max-width: 600px){
.video-container{
display: none;
}
}

.video-container video{
display: block;
margin: 0 auto; /* Center horizontally */
width: 80%;
height: auto;
position: relative; /* Change from absolute to relative */
}

.nav-arrow_left{
position: absolute;
background: none;
color: transparent; /* The color is set to transparent because the arrow is created by borders */
border-bottom: 1.5px solid #bc1b16;
border-right: 1.5px solid #bc1b16;
border-left: none;
border-top: none;
cursor: pointer;
width: 30px;  /* Adjust size for a more proportional arrow */
height: 30px; /* Ensure the width and height are the same for symmetry */
transform: rotate(135deg);
margin-left: 2.5rem;
margin-top: 12rem;
}

@media only screen and (max-width: 600px){
.nav-arrow_left {
position: absolute;
bottom: 3rem;
left: 2vw;
z-index: 100;
}
}
    

.nav-arrow_left-white{
background: none;
color: transparent; /* The color is set to transparent because the arrow is created by borders */
border-bottom: 1.5px solid white;
border-right: 1.5px solid white;
border-left: none;
border-top: none;
width: 30px;  /* Adjust size for a more proportional arrow */
height: 30px; /* Ensure the width and height are the same for symmetry */
transform: rotate(135deg);
margin-left: 2.5rem;
margin-top: 12rem;
position: absolute;
}

.nav-arrow_right-white{
position: absolute;
background: none;
color: transparent; /* The color is set to transparent because the arrow is created by borders */
border-bottom: 1.5px solid white;
border-right: 1.5px solid white;
border-left: none;
border-top: none;
width: 30px;  /* Adjust size for a more proportional arrow */
height: 30px; /* Ensure the width and height are the same for symmetry */
transform: rotate(-45deg);
margin-left: 43rem;
margin-top: 12rem;
}

.nav-arrow_right {
position: absolute;
background: none;
color: transparent; /* The color is set to transparent because the arrow is created by borders */
border-bottom: 1.5px solid #bc1b16;
border-right: 1.5px solid #bc1b16;
border-left: none;
border-top: none;
cursor: pointer;
width: 30px;  /* Adjust size for a more proportional arrow */
height: 30px; /* Ensure the width and height are the same for symmetry */
transform: rotate(-45deg);
margin-left: 43rem;
margin-top: 12rem;
}

@media only screen and (max-width: 600px){
.nav-arrow_right {
position: absolute;
bottom: 3rem;
margin-left: 70vw;
z-index: 100;
}
}

.nav-arrow_right-quit{
position: absolute;
background: none;
color: transparent; /* The color is set to transparent because the arrow is created by borders */
border-bottom: 1.5px solid #bc1b16;
border-right: 1.5px solid #bc1b16;
border-left: none;
border-top: none;
cursor: pointer;
width: 30px;  /* Adjust size for a more proportional arrow */
height: 30px; /* Ensure the width and height are the same for symmetry */
transform: rotate(-45deg);
margin-left: 43rem;
margin-top: 12rem;
}

@media only screen and (max-width: 600px){
.nav-arrow_right-quit {
position: absolute;
bottom: 3rem;
right: 2.8rem;
z-index: 100;
}
}

/* sidebar */

.sidebar_fill {
position: fixed;
height: 100vh;
width: 25vw;
background-color: white;
border-right: 2px solid white;
z-index: 10;
box-sizing: border-box;
}

@media only screen and (max-width: 800px){
.sidebar_fill {
display: none; /* Initially hidden on small screens */
}

.sidebar_fill.open {
    display: block;
    width: 100vw; /* When opened, fill the full width on small screens */
    z-index: 60;
}
}

.sidebar_text{
margin-top: 3.5rem;
width: 100%;
height: 20vh;
font-weight: 300;
color: #bc1b16;
font-size: 15px;
z-index: 1000;
}

.sidebar_text-button{
font-weight: 300;
font-size: 16px;
width: auto;
border: #bc1b16 solid 1.5px;
padding: 0.2rem;
padding-left: 0.6rem;
padding-right: 0.6rem;
margin-bottom: 0.3rem;
border-radius: 10px;
margin-left: 1.2rem;
margin-right: 1.2rem;
display: flex;
justify-content: space-between;
text-decoration: none;
color: #bc1b16;
}

.sidebar_text-button p{
padding-top: 0.2rem;
}

.sidebar_text-button:hover{
background-color: #bc1b16;
color: white;
}

@media only screen and (max-width: 800px){
.sidebar_text{
display: flex;
}
}

.sidebar_text span{
font-size: 20px;
}

#summary-sentence {
bottom:1rem; /* Example margin */
padding: 3.5px 10px 3.5px 10px;
font-weight: 300;
background-color: white;
color: #bc1b16;
border: white solid 2px;
left: 26vw;
font-size: 16px;
text-align: center;
box-shadow:0px 0px 10px 0px rgba(255, 255, 255, 0.648);
position: fixed;
z-index: 60;
width: auto;
}

@media only screen and (max-width: 800px){
#summary-sentence{
display: none;
width: auto;
left: 0;
align-items: center;
margin-left: 1rem;
margin-right: 1rem;
justify-content: center;
font-size: 18px;
}
}

.metadata_h3{
z-index: 12;
left: 0;
padding-bottom: 12rem;
position: relative;
border-top: 2px solid white;
background-color: rgba(188, 27, 22, 1);
color: white;
font-size: 16px;
font-weight: 500;
padding-top: 8px;
padding-bottom: 8px;
padding-left: 1.2rem;
width: 25vw;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
font-family: "IBM Plex Mono", monospace;
text-transform: uppercase;
}

@media only screen and (max-width: 800px){
#metadata_h3{
width: 100vw;
position: fixed;
height: 2.8rem;
left: 0;
bottom: 0;
font-size: 20px;
z-index: 1000;
}
}

#metadata {        
font-family: "IBM Plex Mono", monospace;
font-size: 14px;
height: 54vh;
width: 25vw;
z-index: 10;
position: relative;
left: 0;
top: 0;
overflow-y: auto;
box-sizing: border-box;
}

@media only screen and (max-width: 800px){
#metadata{
width: 100vw;
height: 100%;
left: 0;
padding-bottom: 4rem;
}
}

#metadata hr{
border: none;
border-top: 0.8px solid rgba(188, 27, 22, 1);
margin-left: 1.2rem;
margin-right: 1.2rem;
}

.incident-division_line{
border-top: 4px solid #bc1b16;
border-bottom: 0;
}

.metadata_input{
top: 0.3rem;
position: relative;
padding-bottom: 2rem;
overflow: scroll;
}

@media only screen and (max-width: 800px){
.metadata_input{
top: 0.5rem;
}
}

.metadata_input p{
font-weight: 500;
}

.metadata_input span{
font-weight: 300;
}


.sidebar_line {
background-color: white;  
position:fixed;
margin-top: 0;
width:2px;
height:100vh;
left:25vw;
margin-left: 0;
border:2px;
z-index: 1;
}

@media only screen and (max-width: 600px){
.sidebar_line{
display: none;
}
}

.head_logo{
display: flex;
justify-content: space-between;
position: fixed;
background-color: rgba(188, 27, 22, 1);
z-index: 100;
width: 25vw;
}

@media only screen and (max-width: 600px){
.head_logo{
width: 100%;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
border-bottom: 2px white solid;
background-color: #bc1b16;
}
}

.image_sidebar-logo{
height: 2.5rem;
width: 25vw;
overflow: hidden;
position: fixed;
}

.image_sidebar-logo img{
object-fit: cover;
height: 100vh;
object-position: 0;
}

.logo_chapter {
font-family: "Ortica Angular",monospace;
font-size: 25px;
color: white;
text-decoration: none;
top: 0;
max-width: auto;
width: 25vw;
height: 2.5rem;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
padding-left: 10px;
padding-right: 10px;
padding-top: 3px;
z-index: 200;
}

@media only screen and (max-width: 600px) {
.logo_chapter{
width: 100vw;
position: fixed;
left: 0;
bottom: 0;
z-index: 10;
background-color: #bc1b16;
border-bottom: 2px white solid;
}
}

.header_logo-line{
position
border-bottom: 2px solid white;
}

.logo_chapter-eng{
font-family: "Ortica Angular",monospace;
font-size: 22px;
color: white;
text-decoration: none;
top: 0;
max-width: auto;
height: 2.5rem;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
z-index: 101;
}

@media only screen and (max-width: 600px) {
.head_logo{
z-index: 70;
}
}

.hamburger{
padding-top: 5px;
z-index: 13;
padding-right: 10px;
cursor: pointer;
transition: transform 0.4s ease;
}

@media only screen and (max-width: 600px) {
.hamburger{
position: fixed;
right: 0;
top: 0;
z-index: 10;
}
}

.bar {
display: block;
width: 23px;
height: 1.5px;
margin: 6px auto;
transition: all 0.3s ease-in-out;
background-color: white;
}

.navigation-menu_sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0; /* Set left to 0 and handle sliding with transform */
    width: 25vw;
    height: 100%;
    background-color: rgba(188, 27, 22, 1);
    z-index: 80;
    transform: translateX(-100%); /* Start hidden with translate */
    transition: transform 0.8s ease; /* Use transform for smoother animation */
}

@media only screen and (max-width: 600px) {
    .navigation-menu_sidebar {
        width: 100vw;
        transform: translateX(-100%); /* Hidden initially */
        z-index: 69;
    }
}

.navigation-menu_content {
    position: fixed;
    bottom: 1rem;
    width: 25vw;
}

@media only screen and (max-width: 600px) {
.navigation-menu_content {
    width: 100vw;
    bottom: 3rem;
}
}

.navigation-menu_sidebar a {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    color: white;
    margin-left: 1.2rem;
    padding-bottom: 5px;
    padding-top: 5px;
    text-decoration: none;
    z-index: 90;
}

@media only screen and (max-width: 600px) {
    .navigation-menu_sidebar a {
        z-index: 100;
    }
}

.navigation-menu_sidebar a span {
    font-size: 16px;
    transform: scale(2, 2);
    margin-right: 1.4rem;
    z-index: 100;
}

.navigation-menu_sidebar a:hover {
    font-weight: 600;
}

.navigation-menu_sidebar hr {
    border: none;
    border-bottom: 1px solid white;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}

.switch_languages{
margin-top: 2rem;
border: white solid 1.5px;
margin-left: 1rem;
margin-right: 1rem;
width: auto;
padding-left: 1rem;
}

.switch_languages:hover{
background-color: white;
color: #bc1b16;
}

.navigation-menu_sidebar.show {
    transform: translateX(0); /* Slide in the menu */
}

@media only screen and (max-width: 600px) {
    .navigation-menu_sidebar.show {
        width: 100vw;
        transform: translateX(0); /* Slide in for mobile */
    }
}

.hamburger.active .bar:nth-child(1) {
transform: rotate(45deg) translate(5.35px, 5.35px);
}

.hamburger.active .bar:nth-child(2) {
opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
transform: rotate(-45deg) translate(5.35px, -5.35px);
}

.highlight {
background-color: black;
color: white;
}

.title_subchapter_sidebar h1{
position: fixed;
top: 4rem;
font-family: "Ortica Angular";
color: rgba(188, 27, 22, 1);
font-size: 40px;
line-height: 35px;
left: 1rem;
}

.title_subchapter_sidebar p{
position: fixed;
top: 7rem;
width: 25vw;
-webkit-box-sizing: border-box; 
-moz-box-sizing: border-box;    
box-sizing: border-box; 
padding-left: 1rem;
padding-right: 1rem;
font-family: "IBM Plex Mono", monospace;
font-weight: 300;
font-size: 15px;
color: #bc1b16;
}

/* archive */

body {
display: flex;
background-color: rgba(188, 27, 22, 1);
}

.calendar-container {
font-family: "IBM Plex Mono", monospace;
flex: 1;
margin-top: 0;
position: relative;
margin-left: 22rem;
}

@media only screen and (max-width: 600px) {
.calendar-container {
transform: scale(85%);
width: 200rem;
height: 200rem;
margin-left: -15rem;
margin-top: -15rem;
position: fixed;
overflow-y: hidden;
}
}

.calendar-header {
position: fixed;
display: flex;
z-index: 61;
margin-left: 33.8rem;
}

@media only screen and (max-width: 600px) {
.calendar-header {
transform: rotate(-90deg);
margin-left: 1.5rem;
top: 38.3rem;
transform-origin: left;
z-index: 50;
}
}

.calendar-day {
font-weight: 800;
font-size: 17px;
flex: 1;
text-align: center;
padding: 10px 0;
transform: rotate(90deg);
padding-right: 1.6px;
color: white;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: rgba(188, 27, 22, 1);
}

@media only screen and (max-width: 600px) {
.calendar-day {
font-size: 14.2px;
}
}

.calendar-day:last-child {
border-right: none;
}

.calendar {
position: relative;
width: calc(31 * 20px + 30 * 2px); /* 31 days + 30 gaps */
height: calc((2024 - 1980 + 1) * 12 * 20px + (2024 - 1980) * 30px); /* (years * 12 months + year gaps) */
top: 0;
left: 12.5rem;
/* border: 1px solid #000; */
}

@media only screen and (max-width: 600px) {
.calendar {
transform: rotate(-90deg);
transform-origin: top left;
width: 100%;
height: 150%;
margin-top: 46rem;
margin-left: -13rem;
}
}

.vertical-line {
position: absolute;  /* Position relative to the calendar container */
margin-top: 0;
padding-bottom: 5rem;
width: 0.5px;
height: 100%;  /* Match the height of the parent container */
background: white;
}

@media only screen and (max-width: 800px) {
.vertical-line {
    margin-left: 0rem;
    height: 100%;  /* Ensure it scales correctly with the parent container */
}
}

.horizontal-line {
position: absolute;
margin-top: 3.4rem;
width: 106%;
height: 0.5px;
background: white;
}

@media only screen and (max-width: 800px){
.horizontal-line{
width: 41.3rem;
}
}

.thick-line_vertical{
width: 2px;
}

.thick-line_vertical-2{
width: 1.25px;
}

.thick-line_horizontal {
height: 2px;
}

@media only screen and (max-width: 800px){
.thick-line_horizontal{
width: 43.3rem;
}
}

#yearsContainer {
font-family: "IBM Plex Mono", monospace;
position: absolute;
top: 2.4rem;
width: 100px;
}

.year {
color: white;
font-size: 17px;
padding: 4.96px;
text-align: right;
padding-bottom: 35.815rem;
margin-left: 9rem;
}

@media only screen and (max-width: 600px){
#yearsContainer {
/* transform: rotate(-90deg); */
display: flex;
transform-origin: top left;
margin-top: 0.6rem;
left: -2.5rem;
}

.year{
margin-right: -2.1rem;
font-size: 20px;
z-index: -1;
color: white;
opacity: 50%;
font-size: 200px;
}
}

#monthsContainer {
font-family: "IBM Plex Mono", monospace;
font-weight: 100;
position: absolute;
color: white;
top: 3.7rem;
width: 100px;
}

.month{
margin-left: 55.5rem;
font-size: 17px;
text-align: right;
font-weight: 200;
padding-bottom: 1.75rem;
}

@media only screen and (max-width: 600px) {

#monthsContainer{
transform: rotate(-90deg);
transform-origin: top left;
position: absolute;
top: 0;
left: 0;
height: 100vw;
}
}

.event {
position: absolute;
width: 14px;
height: 14px;
margin-left: -1.795rem;
margin-top: 2.98rem;
cursor: pointer;
background-color: white;
transition: transform 0.2s ease-in-out, width 0.2s ease-in-out, height 0.2s ease-in-out;
}

.event:hover{
transform: scale(1.35);
}

.event.active {
transform: scale(1.35); 
box-shadow:0px 0px 10px 0px white ;
}

.main {
background-color: white;
}

/* New style for events with multiple occurrences */
.event-multiple {
    width: 14px;
    height: 14px;
    z-index: 10;
    background-color: white;
    border-right: 2px solid rgba(188, 27, 22, 1);
    border-bottom: 2px solid rgba(188, 27, 22, 1);
    box-shadow: 2px 2px 0px 0px white;
    border-radius: 0; /* Ensure it's a square */
    transform: none; /* Remove any rotation */
    /* Any other custom styles you want for multiple events */
}

.event-multiple.active {
transform: scale(1.35);
box-shadow: 2px 2px 0px 0px white, 0px 0px 10px 0px white; /* Combine original and new shadow */
}

.case_seperator{
height: 10px;
border: none;
background-color: #bc1b16;
}

.event.unbekannte-Ursache {
width: 11px;
height: 11px;
z-index: 10;
border: 2px solid white;
background-color: rgba(188, 27, 22, 1);
}

.event.bs_von_innen{
margin-top: 3.0156rem;
margin-left: -1.78rem;
width: 13px;
height: 13px;
background-color: white;
transform: rotate(45deg);
}

.event.active.bs_von_innen {
transform: scale(1.35) rotate(45deg);  
}

.event.event.bs_von_innen:hover{
transform: scale(1.35) rotate(45deg);
}

.event.technischer_defekt{
margin-left: -1.85rem;
margin-top: 2.9rem;
z-index: 10;
width: 16px;
height: 16px;
border-radius: 100%;
}

.event.technischer_defekt:hover{
transform: scale(1.35);
}

.event.two-days{
width: 32px;
height: 12px;
z-index: 10;
margin-top: 72px;
border: white 2px solid;
background-color: #bc1b16;
background: repeating-linear-gradient( -45deg, white, white 2px, #bc1b16 2px, #bc1b16 5px );
}    

.event.three-days {
width: 54px;
height: 12px;
z-index: 10;
margin-top: 72px;
border: white 2px solid;
background-color: #bc1b16;
background: repeating-linear-gradient(-45deg, white, white 2px, #bc1b16 2px, #bc1b16 5px);
}    

.event.four-days {
width: 77px;
height: 12px;
z-index: 10;
margin-top: 72px;
border: white 2px solid;
background-color: #bc1b16;
background: repeating-linear-gradient(-45deg, white, white 2px, #bc1b16 2px, #bc1b16 5px);
}


@media only screen and (max-width: 600px) {
.title_subchapter_sidebar {
display: none;
}

.close-sidebar {
cursor: pointer;
font-size: 20px;
position: absolute;
top: 10px;
right: 20px;
}
}


.info_spacebetween{
color: rgba(188, 27, 22, 1);
font-family: "IBM Plex Mono", monospace;
display: flex;
justify-content: space-between;
padding-top: 0.6rem;
padding-bottom: 0.6rem;
margin-right: 1.2rem;
padding-left: 1.2rem;
}

.info_spacebetween a{
text-decoration: underline;
color: rgba(188, 27, 22, 1);
}

.info_spacebetween span{
padding-left: 2rem;
text-align: right;
}

.link_style{
text-align: left !important;
}

.description_event h4 {
font-weight: 500;
font-size: 14px;
color: rgba(188, 27, 22, 1);
margin-left: 1.2rem;
margin-right: 1.2rem;
padding-top: 0.6rem;
padding-bottom: 0.6rem;
}

.description_event p {
font-size: 14px;
font-weight: 300;
color: #333;
color: rgba(188, 27, 22, 1);
margin-left: 1.2rem;
margin-right: 1.2rem;
padding-bottom: 0.6rem;
}

#filterContainer {
position: fixed;
width: 23vw;
left: 1rem;
bottom: 1rem;
z-index: 40;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
}   

@media only screen and (max-width: 600px){
#filterContainer{
display: none;
}
}

.filter-content{
position: relative;
display: none;
width: auto;
left: 0;
padding-bottom: 3rem;
background-color: #bc1b16;
border: 1px white solid;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
overflow: scroll;
height: 80vh;
box-shadow:0px 0px 10px 0px #76120f;
z-index: -1;
}

.filter-content.expanded {
display: block;
max-height: auto;
}

.Filter_header{
cursor: pointer;
display: flex;
justify-content: space-between;
z-index: 11;
bottom: 1rem;
left: 1rem;
background-color: rgba(188, 27, 22, 1);
color: white;
text-transform: uppercase;
}

.Filter_header h3{
padding: 6px 7px 6px 7px;
font-family: "IBM Plex Mono", monospace;
font-weight: 500;
font-size: 16px;

}

/* .Filter_header:hover h3{
font-weight: 500;
}  */


@media only screen and (max-width: 600px){
.Filter_header{
position: fixed;
height: 2.1rem;
width: 40vw;
left: 1rem;
bottom: 1rem;
border: none;
background-color: white;
color: #bc1b16;
border: solid 0.5px #bc1b16;
}

.Filter_header h3{
font-size: 18px;
}

.filter-content{
width: 91.55vw;
height: 82vh;
box-shadow:0px 0px 8px 0px white;
padding-bottom: 5rem;
}
}

.clear-filters{
position: fixed;
border: 1px white solid;
background-color: #bc1b16;
width: 20.75vw;
left: 1.625rem;
right: 10px;
margin-top: 20px;
bottom: 3.68rem;
padding-left: 10px;
padding-bottom: 5px;
padding-top: 5px;
box-shadow: 0 0 10px 0 #bc1b16;
}

.clear-filters button{
border: none;
background: none;
font-size: 15px;
cursor: pointer;
color: white;
}

.clear-filters:hover button{
font-weight: 600;
cursor: pointer;
}

@media only screen and (max-width: 600px){

.clear-filters{
width: auto;
left: 1.7rem;
right: 1.7rem;
}

.clear-filters button{
font-size: 18px;
}
}

.filter-category {
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
margin-top: 10px;
}

.filter-category button {
background-color: white;
width: 100%; 
left: 1rem;
right: 1rem;
border: none;
font-size: 15px;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 20px;
cursor: pointer;
color: #bc1b16;
text-align: left;
}

@media only screen and (max-width: 600px){
.filter-category button{
font-size: 18px;
}
}

.filter-category button:hover{
font-weight: 600;
}

.arrow_simple{
border: solid white;
z-index: 11;
width: 5px;
height: 5px;
margin-right: 12px;
margin-top: 13px;
border-width: 0 2px 2px 0;
padding: 3px;
transform: rotate(-135deg);
vertical-align: middle;
transition: ease-in-out 0.2s;
}

@media only screen and (max-width: 600px) {
.arrow_simple{
border: solid #bc1b16;
margin-right: 10px;
margin-top: 13px;
border-width: 0 2px 2px 0;
}
}

.arrow_simple.rotate{
transform: rotate(45deg);
margin-top: 7px;
}

.dropdown-toggle {
background-color: white;
border: none;
padding: 10px;
cursor: pointer;
width: 100%;
text-align: left;
color: #bc1b16;
font-weight: 500;
}

.dropdown-content {
display: none;
border-top: 1px solid #bc1b16;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
padding: 10px;
background-color: #f9f9f9;
}

.dropdown-content button {
display: block;
width: 100%;
border: none;
background: none;
padding: 10px;
cursor: pointer;
text-align: left;
color: #bc1b16;
}

/* Button to toggle years */
.years-container {
position: fixed;
left: 27vw;
top: 42px;
z-index: 30;
}

@media only screen and (max-width: 600px){
.years-container {
/* transform: rotate(-90deg); */
display: none;
}
}

.years-button {
background-color: #bc1b16;
color: white;
border: none;
padding-bottom: 5px;
cursor: pointer;
font-family: "IBM Plex Mono", monospace;
font-size: 16px;
border-bottom: solid 2px white;
display: flex;
justify-content: space-between;
width: 4.5rem;
height: auto;
font-weight: 400;
}

.arrow_years-menu{
border: solid white;
z-index: 11;
width: 5px;
height: 5px;
margin-top: 3px;
border-width: 0 2px 2px 0;
padding: 3px;
transform: rotate(45deg);
vertical-align: middle;
transition: transform 0.2s ease-in-out;
transform-origin: 50% 50%;
}

.arrow_years-menu.rotate{
transform: rotate(-135deg);
margin-top: 7px;
}

.years-list {
display: none;
background-color: white;
padding: 10px;
text-align: center;
max-height: 300px; 
overflow-y: auto; 
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

.years-list.expanded{
display: block;
}

.years-list button {
display: block;
width: 100%;
text-align: center;
background: none;
border: none;
color: #bc1b16;
font-family: "IBM Plex Mono", monospace;
padding: 5px 0;
cursor: pointer;
font-weight: 300;
font-size: 15px;
}

.years-list button:hover {
font-weight: 500;
}

.grid-container {
scroll-behavior: smooth; /* Enables smooth scrolling */
}

.year-slider {
margin: 1rem 0;
text-align: center;
margin-top: 2rem;
}

.year-range-container {
display: flex;
justify-content: space-between;
position: relative;
width: 90%;
max-width: 400px;
margin: 0 auto;
}

.year-range-container input[type="range"] {
-webkit-appearance: none;
width: 100%;
background: transparent;
position: absolute;
}

.year-range-container input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
background: white;
cursor: pointer;
}

.year-range-container input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 5px;
height: 20px;
background: white;
box-shadow:0px 0px 10px 0px black(255, 255, 255, 0.648);
cursor: pointer;
position: relative;
z-index: 2;
bottom: 8px;
}

.year-range-container span {
text-align: center;
margin-top: 1rem;
color: white;
}
 
.filter-button{
font-weight: 200;
}

.filter-button.active {
background-color: #bc1b16;
color: white;
border-bottom: 1px white solid;
}

/* Filter sidebar styles */
#filterSidebar {
padding: 10px;
border: 1px solid #ccc;
position: fixed;
}

#activatedFilters {
display: none;
}

.legend_title{
display: flex;
justify-content: space-between;
background-color: white;
padding: 5px 10px 5px 10px;
cursor: pointer;
/* text-transform: uppercase; */
}

/* .legend_title:hover p{
box-shadow:0px 0px 30px 30px white(255, 255, 255, 0.648);
} */

.legend_title p{
color: #bc1b16;
font-family: "IBM Plex Mono", monospace;
font-size: 16px;
font-weight: 400;
padding: 0.7px;
}

.legend_content{
position: relative;
margin-top: 2.5rem;
justify-content: center;
align-items: center;
font-family: "IBM Plex Mono", monospace;
z-index: 10;
/* margin-left: 1rem;
margin-right: 1rem; */
width: 25vw;
font-size: 14px;
/* border-top-left-radius: none;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px; */
background-color: white;
}

.legend_content_title{
z-index: 0;
position: relative;
margin-top: 0;
width: 25vw;
background-color: #bc1b16;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
border-bottom: 2px solid white;
}

.legend_content_title p{
color: white;
padding-left: 1.2rem;
padding-bottom: 7px;
padding-top: 7px;
font-size: 15px;
font-weight: 500;
font-family: "IBM Plex Mono", monospace;
text-transform: uppercase;
}

.legend_content_text{
display: block;
}

.legend_content-line{
width: auto;
border-bottom: 0.8px solid #bc1b16;
border-left: none;
border-right: none;
border-top: none;
margin-left: 1rem;
margin-right: 1rem;
}

.legend_content_events{
display: flex;
padding-bottom: 8px;
padding-top: 8px;
padding-left: 1.2rem;
}

.legend_content_events p {
color: #bc1b16;
text-align: left;
font-weight: 300;
margin-left: 1.2rem;
}

.image_legend{
position: fixed;
height: 100vh;
width: 25vw;
top: 0;
left: 0;
object-fit: cover;
object-position: 0;
z-index: -10;
opacity: 50%;
}

/* .legend_content.expanded {
display: block;
max-height: auto;
} */

/* #legend_toggle {
position: fixed;
bottom: 1rem;
right: 1rem;
width: 18rem;
z-index: 60;
} */

@media only screen and (max-width: 600px) {
/* #legend_toggle{
display: none;
    width: auto;
position: fixed;
left: 1rem;
right: 1rem;
bottom: 3.5rem;
z-index: 10;
} */
.legend_content{
    display: none;
/* position: relative;
width: auto;
left: 0;
height: auto;
bottom: 0; */
}

.legend_title{
height: 1.5rem;
}

.legend_title p{
font-size: 18px;
}

.legend_content_events p{
font-size: 18px;
}
}

.arrow_simple_red{
border: solid #bc1b16;
z-index: 11;
width: 5px;
height: 5px;
margin-top: 7px;
border-width: 0 2px 2px 0;
padding: 3px;
transform: rotate(-135deg);
transition: ease-in-out 0.2s;
}

.arrow_simple_red.rotate{
transform: rotate(45deg);
margin-top: 2.2px;
}

/* #symbol_arson-outside{
width: 15px;
height: 15px;
background-color: #bc1b16;
} */

#symbol_arson-outside{
    width: 13px;
    height: 13px;
    background-color: #bc1b16;
    margin-top: 2px;
    }

/* #symbol_arson-inside{
width: 14px;
height: 14px;
background-color: #bc1b16;
transform: rotate(45deg);
} */

#symbol_arson-inside{
    width: 13px;
    height: 13px;
    margin-top: 2px;
    background-color: #bc1b16;
    transform: rotate(45deg);
    }

/* #symbol_technical_defect{
width: 15px;
height: 15px;
background-color: #bc1b16;
border-radius: 100%;
transform: rotate(45deg);
margin-left: -0.02rem;
} */

#symbol_technical_defect{
    width: 14px;
    height: 14px;
    background-color: #bc1b16;
    border-radius: 100%;
    transform: rotate(45deg);
    margin-left: -0.02rem;
    margin-top: 2px;
    }

/* #symbol_cause-unknown{
width: 11px;
height: 11px;
background-color: white;
border: #bc1b16 3px solid;
margin-left: -0.05rem;
} */

#symbol_cause-unknown{
    width: 11px;
    height: 11px;
    background-color: transparent;
    border: #bc1b16 2px solid;
    margin-left: -0.05rem;
    margin-top: 2px;
    }

/* #symbol_multiple {
width: 15px;
height: 15px;
background-color: #bc1b16;
border-right: 2px solid white;
border-bottom: 2px solid white;
box-shadow: 2px 2px 0px 0px #bc1b16;
margin-left: -0.05rem;
} */

#symbol_multiple {
width: 13px;
height: 13px;
background-color: #bc1b16;
border-right: 2px solid white;
border-bottom: 2px solid white;
box-shadow: 2px 2px 0px 0px #bc1b16;
}

.symbol_multiple {
width: 10px;
height: 10px;
background-color: #bc1b16;
border-right: 2px solid white;
border-bottom: 2px solid white;
box-shadow: 2px 2px 0px 0px #bc1b16;
transform: rotate(180deg);
}

/* #symbol_period{
width: 12px;
height: 12px;
border: #bc1b16 2px solid;
background: repeating-linear-gradient( -45deg, white, white 3px, #bc1b16 3px, #bc1b16 6px );
margin-left: -0.05rem;
} */

#symbol_period{
    width: 11px;
    height: 11px;
    border: #bc1b16 2px solid;
    background: repeating-linear-gradient( -45deg, #bc1b16, #bc1b16 3px, white 3px, white 6px );
    margin-left: -0.05rem;
    margin-top: 2px;
    }
    

.intro_legend-scroll{
max-height: 500px;
overflow-y: auto;
}

@media only screen and (max-width: 600px) {
.intro_legend-scroll{
overflow-x: hidden;
}
}

@media only screen and (max-width: 600px) {
.intro_text-main{
width: 60%;
left: 0;
}
}

.intro_legend{
width: 70%;
font-family: "IBM Plex Mono", monospace;
font-weight: 400;
padding-top: 2rem;
padding-bottom: 2rem;
margin: auto;
margin-right: 4rem;
}

@media only screen and (max-width: 600px) {
.intro_legend{
margin: auto;
justify-content: center;
width: 75%;
margin-bottom: 8rem;
}
}

.intro_legend-content{
display: flex;
padding-bottom: 1rem;
}

.intro_legend-content p{
margin-left: -40px;
width: 80%;
flex: 1;
text-align: left;
}

@media only screen and (max-width: 600px) {
.intro_legend-content p{
padding-left: 60px;
}
}

.intro_legend-text{
width: 30rem;
}

.intro_legend-title{
font-family: "IBM Plex Mono", monospace;
font-weight: 500 !important;
padding-bottom: 1rem;
}

.intro_legend-hr{
border-top: none;
border-left: none;
border-right: none;
border-bottom: 0.5px solid #bc1b16;
margin-bottom: 1rem;
margin-right: 3rem;
}

.intro_symbol-1{
margin-top: 5px;
height: 16px;
width: 16px;
background-color: #bc1b16;
}

.intro_symbol-2{
margin-top: 5px;
width: 16px;
height: 16px;
background-color: #bc1b16;
transform: rotate(45deg);
}

.intro_symbol-3{
width: 18px;
height: 18px;
background-color: #bc1b16;
border-radius: 100%;
transform: rotate(45deg);
}

.intro_symbol-4{
margin-top: 5px;
width: 12px;
height: 12px;
background-color: white;
border: #bc1b16 3px solid;
}

.intro_symbol-5{
margin-top: 5px;
width: 12px;
height: 12px;
background-color: white;
border: #bc1b16 3px solid;
background: repeating-linear-gradient( -45deg, white, white 2px, #bc1b16 2px, #bc1b16 4px );
}

.divider-line{
height: 2.4rem; 
width: 25vw; 
background-color: rgba(188, 27, 22, 1); 
margin-top: 2.2rem; 
margin-bottom:-2.2rem;
}

@media (max-width: 600px) {
.arson-files-line {
    display: none;
}
}

@media (max-width: 600px) {
#arson-files-menu {
    display: none;
}
}

@media (max-width: 600px) {
.intro_body-text {
height: 50vh;
overflow-y: scroll;
padding-bottom: 2rem;
}
}

.image_sidebar{
position: fixed;
height: 100vh;
width: 25vw;
top: 0;
left: 0;
object-fit: cover;
object-position: 0;
z-index: -1;
}

