:root {
  --color-black: #0A0B1A;
  --color-white: #FFF5E1;
  --color-theme1: #1C1442;
  --color-theme2: #2B1660;
  --color-theme3: #142850;
  --color-backg: #444;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--color-white);
    scrollbar-width: none;

}
/*================================================================================================
                Nav Bar
================================================================================================*/

.Nav_Bar nav {
    position: fixed;
    z-index: 10; /*affects the stacking priority of the object*/
    margin: auto;
    
    top: 50%;
    transform: translateY(-50%); /*together, these two move the object to be centerd vertically in the screen*/

    left: 0;
    
    display: flex;
    align-items: center;


    height: auto;
    width: 10vw;

}

.Nav_Bar nav ul {
    display: flex;
    flex-flow: column;
    gap: 3vh;
}

.Nav_Bar nav ul li {
    text-transform: uppercase;          
    font-size: clamp(1rem, 2vh, 1.5rem);
    font-family: 'quantico';
    list-style: none;

}

.Nav_Bar nav ul li a {
    text-decoration: none;
    
    transition: all 0.3s ease 0s;

    color: var(--color-theme3);

    mix-blend-mode: difference;

}

.Nav_Bar nav ul li a:hover {
    transition: all 0.3s ease 0s;
    color: sandybrown;
}


/*================================================================================================
                Main Content
================================================================================================*/


.wrapper {
    width: 100vw;
    scrollbar-width: none;


    display: flex;
    flex-direction: column;
    align-items: center;

}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: clamp(400px, 65vw, 1500px);
    scrollbar-width: none;

    margin-top: 10vh;

}

.content h1 {
    color: var(--color-theme3);
    font-family: 'fields-display';
    font-size: clamp(2rem, 4vw, 4.5rem);

    align-self: flex-start;
    margin: 0;
    padding: 0;
}

.caption {
    color: var(--color-theme3);
    font-family: 'quantico';
    font-size: clamp(0.9rem, 1.3vw, 1.2rem);
    font-style: italic;

    height: 5vh;
    width: clamp(400px, 50vw, 1000px);
    margin-bottom: 7vh;

    padding: 0;
}
.content p{
    color: var(--color-theme3);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-family: 'quantico';
    
    margin-top: 0;

}

.content h2 {
    color: var(--color-theme3);
    font-family: 'fields-display';
    font-size: clamp(1.6rem, 2.8vw, 3rem);
    margin: 2vh 0 1vh;
    padding: 0;

    align-self: flex-start;

}

.content h3 {
    color: var(--color-theme3);
    font-family: 'fields-display';
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin: 4vh 0 0vh;
    padding: 0;

    align-self: flex-start;
}
.content img{
    width: clamp(400px, 50vw, 1000px);
    margin: 0;
}

.content .endSpacer{
    height: 20vh;
}