@import url("/assests/pages/css/sidebar.css");
@import url("/assests/pages/css/grid.css");

body {
    font-family: "Outfit";
    font-weight: 400;
    font-size: clamp(1rem, 16px 1.25rem);
    color: ghostwhite;
    z-index: 1;
    overflow-y: hidden;
}

.contain {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    height: 100vh;           /* 100% of the viewport height */
    width: 100vw;            /* Optional: ensures full width, though div is block by default */
    z-index: 2;
    position: relative; /* Add this for z-index to work properly */
  }

.blur {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); 
    z-index: 1;   
    border-radius: 5px;
}

h1 {
    position: relative;
    z-index: 1;         
    color: white;          
    font-family: "Libre Bodoni";
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1rem, 2rem + 10vw, 4rem);
}

h2 {  
    font-size: clamp(.5rem, 1rem + 8vw, 3rem);
    text-align: center;     
    font-family: "Libre Bodoni";
    font-weight: 500;
    font-style: italic;
    margin-bottom: 5px;
    margin-top: 5px;
}

h3 {  
    font-size: 2em;
    text-align: center;     
    font-family: "Libre Bodoni";
    font-weight: 500;
    font-style: italic;
    margin-bottom: 5px;
    margin-top: 5px;
}

hr {
    width: 90%;
    border-width: 1px;
    color: white; 
    margin-top: 5px;
    margin-bottom: 5px;
    border-style: solid;
}

li {
    list-style: "—  ";
}

a {
  color: inherit;
  text-decoration: inherit;
}

.scroller {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
  
.scroller section {
    z-index: 2;
    /*background-color: aqua;*/
    min-height: 100%;
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding if needed */
    border: none; /* Remove any borders if present */
}

.scroller {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    margin: 0;
    padding: 0;
}

.scroller section {
    scroll-snap-align: start;
    padding: 0px;
}

.verline {
    background-color: white;
    width: 2px;
}

.center {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
}

.select {
    font-size: 1.25em;
    color: rgb(197, 197, 197);
}

.select li {
    list-style: "";
    transition: color 0.3s ease;
}

.select li:hover {
    color: #4d6dd4;
}

section {
    display: flex;
}

.important {
    color: #4d6dd4;
}

.hyperlink {
    color: #4d6dd4;
    text-decoration: underline dotted;
}