/* COLOR PALETTE 
------------------
#070707 - Rich Black
#E5EBEA - Platinum White
#0D2A45 - Prussian Blue
------------------
*/

/* FONTS */
@import url(/assets/fonts/StretchPro.otf);

@import url(/css/gallery.css);
@import url(/css/skills.css);
@import url(/css/hero.css);
@import url(/css/contact.css);
@import url(/css/portDet.css);
@import url(/css/footer.css);
@import url(/css/about.css);

/* UNIVERSAL PAGE STYLING 
------------------------------------------------------------ */

body {
    width: 100vw;
    height: 100vh;
    background-color: #E5EBEA;
    overflow-x: hidden;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Stretch Pro';
    font-variant: none;
}

body::-webkit-scrollbar {
    display: none;
  }

body {
    -ms-overflow-style: none;  
    scrollbar-width: none;
}

.white {
    background-color: #E5EBEA;
}

    .container {
        padding: 20px;
    }

    main {
        height: 100vh;
    }

/* HEADER STYLE
------------------------------------------------------------ */

.header {
    display: grid;
    position: fixed;
    place-items: center;
    width: 100vw;
    z-index: 100;
    transition: all .2s linear;
}

    .navlink {
        position: inline-flex;
    }

    .nav-1 {
        position: relative;
        transform: translateX(-145px);
        width: 160px;
        display: grid;
        place-items: center;    
    }

    .nav-2 {
        position: relative;
        transform: translateX(145px);
        width: 170px;
        display: grid;
        place-items: center;
    }

    .navEffect {
        transition: .5s ease;
    }

    .navWrap {
        display: flex;
        justify-content: center;
        position: absolute;
    }

        a {
            text-decoration: none;
            color: #0D2A45;
        }


    svg {
        width: 115px;
        height: 115px;
    }
    
        .lines {
            fill: none;
            stroke: #0D2A45;
            stroke-miterlimit: 10;
            stroke-width: 10px;
        }

/* TEXT FORMATTING
------------------------------------------------------------ */

.content-header {
    margin: 0;
    font-variant: none;
    text-align: center;
    font-size: 60px;
    color: #0D2A45;
    text-transform: lowercase;
}