*
{
    margin: 0;
    padding: 0;
}
/* tester below */

/* tester above */
body
{
    font-family: arial, helvetica, sans-serif;
    background: #3d93a2;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
    
}
.introtext
{
    color: rgba(255, 255, 255, 0.5);
}
.container
{
    width: 100%;
    height: 100%;
    /* smooth scroll goodness */
    overflow-y: scroll;
    scroll-behaviour: smooth;
    scroll-snap-type: y mandatory;
}

.navbar 
{
    position: fixed;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);

}

.navbar2
{
    position: fixed;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);

}

.navbar ul
{
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
    
}

.navbar ul li
{
    margin: 0 1rem;
    padding: 1rem;

}

.nabvar ul li a
{
    text-decoration: none;
    text-transform: uppercase;
    color: #f4f4f4;
}

.navbar ul li a:hover
{
    color: skyblue;
}

section
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    scroll-snap-align: center;
}

section h1
{
    font-size: 2rem;
    font-family: avenir;
    font-weight: bold;
}

section p
{
    font-size: 1.5rem;
    font-family: avenir;
    font-weight: bold;
}

/* sections */

section#work
{
    background: url('whiteback.JPG') no-repeat center center/cover;
}

section#resume
{
    background: url('webresume.JPG') no-repeat center center/cover;
}