
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    min-height: 100vh;
    min-width: 100vw;
    background: var(--body-bg-color);
    color: var(--normal-text-color);
    display: flex;

    position: relative;

    align-items: flex-start;
    justify-content: center;
}


.root {
    position:absolute;
    width: 95%;
    top: 20px;
    bottom: 20px;

    overflow-y: auto;
    border-radius: 10px 10px;
    background-color: var(--root-bg-color);
    box-shadow: var(--root-shadow);
}

/* HEADER CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6%;

    border-radius: 10px 10px 0px 0px;
    border-bottom: var(--navbar-border-grey);
    background-color: var(--navbar-bg-color);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2%;

    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    gap: 0.1rem;
}
  
.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;

    background: transparent;
    /* background-color: white; */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
  
.nav-links a:hover {
    color: var(--hover-bright);
}
  
@media (max-width: 600px) {
    .nav-links {
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #333;
      padding: 1rem;
      display: none;
    }
}

/* CONTENT CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 
.content {
    position: absolute;

    top: 8%;
    left: 15%;
    width: 70%;
    height: 90%;

    padding-left: 40px;
    padding-right: 50px;

    overflow-y: auto;

    color: var(--subtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;

    background-color: var(--content-bg-color);
}

.content-section {
    padding-bottom: 3px;
    margin-bottom: 20px;
}

.content-section a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    font-style: normal;
    font-variant: normal;
    color: transparent;
}

.content-section a:hover p {
    cursor: pointer;
    color: var(--hover-bright);
}

.content h2 {
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem !important;
    margin-bottom: 10px;
}

.content-section p {
    color: var(--microtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.0rem !important;
    font-stretch: wider;
    line-height:150% !important;
}

.space-btn-para {
    margin-top: 10px;
    margin-bottom: 10px;
}





/* FOOTER CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 

.footer {
    position:absolute;

    bottom: 0%;
    left: 2%;
    width: 25%;
    height: 3%;

    margin-bottom: 1%;

    color: var(--microtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;

    background-color: var(--content-bg-color);

    justify-content: center;
    text-align: center;
}

.footer-qoute {
    color: var(--microtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
}

/* COMMON CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 

::-webkit-scrollbar {
    width: 8px;
}
  
::-webkit-scrollbar-track {
    background: var(--body-bg-color);
    border-radius: 5px;
    /* border: 2px solid var(--body-bg-color); */
}
  
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 5px;
    border: 1px solid var(--body-bg-color);
}
  
::-webkit-scrollbar-thumb:hover {
    background: var(--hover-bright);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--root-bg-color) inset;
    -webkit-text-fill-color: var(--microtext-color);
    transition: background-color 5000s ease-in-out 0s;
}
  
body {
    scrollbar-width: thin;
    /* scrollbar-color: var(--root-bg-color) var(--body-bg-color); */
}

.content-blur {
    position: sticky;

    bottom: -1%;
    width: 100%;
    height: 8%;

    padding-left: 1%;
    padding-right: 1%;

    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.0) 0%,
        var(--root-bg-color) 100%
    );

    z-index: 999 !important;
}

.hidden {
    display: none;
}
