/*############
## Typography
#############*/

@font-face {
    font-family: 'Helvetica Neue';
    font-display: auto;
    src: local('font/Helvetica Neue');
   }

html { 
    font-family: 'Helevetica Neue', sans-serif; 
    scroll-behavior: smooth;
} 

h1 { 
    font-size: 2.5rem;
    margin-bottom: 5px;
    margin-top:1px;
}

h2 { font-size: 1.7rem;}

p { 
    font-size: 1.15rem; 
}

a {
    color: rgb(34, 33, 33);
}

a:hover {
    color: darkgray;
}

/*#################
### Nav
##################*/
nav {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    width: 100%;
    position: fixed;
    background-color: white;
    z-index: 1000;
    border-bottom: 1px solid lightgray;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 0;
    padding-left: 0;
}
/*
nav li::before { 
    content: '[';
}
nav li::after { 
    content: ']';
}
*/
nav li { margin-left: 10px;}

nav li a {
    text-decoration: none;
    font-weight: 600;
    color: black;
}

.script {
    font-family: 'courier';
}


/*################
### Sections
################*/

section {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    padding-top: 20px;
    line-height: 1.5;
}


.container { 
    width: 90%; 
    margin: auto;
}

.right, .left, .fullpage {
    width:98%;
    height: auto;
}


/*.anchors {
    display: none;
}*/

@media screen and (min-width: 35em) {

    h1 {
        font-size: 5rem;
    }

    h2 { font-size: 2.1rem;}

    .right {
        width: 40%;
        float:right;
        padding-left: 10px;
    }
    .left {
        width: 40%;
        float:left;
        padding-right: 10px;
    }
    p { 
        font-size: 1.3rem; 
    }

    .anchors {
        display: inline;
    }

}
@media screen and (min-width: 52em) {

    section {
        align-items: center;
    }
    .container {
        width: 60vw;
        text-align: left;
    }
    .right .left{
        width: 60%;
        max-width: 450px;
        height:auto;
        clear: both;
    }
    p { 
        font-size: 1.5rem; 
    }

}
