@font-face {
    font-family: "PP Editorial New";
    font-weight: 400;
    src: url('assets/fonts/ppeditorialnew-regular-webfont.woff2') format('woff2');
    src: url('assets/fonts/ppeditorialnew-regular-webfont.woff') format('woff');
}

@font-face {
    font-family: "PP Editorial New";
    font-weight: 400;
    font-style: italic;
    src: url('assets/fonts/ppeditorialnew-italic-webfont.woff2') format('woff2');
    src: url('assets/fonts/ppeditorialnew-italic-webfont.woff') format('woff');
}

@font-face {
    font-family: "Neue Montreal";
    font-weight: 500;
    src: url('assets/fonts/ppneuemontreal-book-webfont.woff2') format('woff2');
    src: url('assets/fonts/ppneuemontreal-book-webfont.woff') format('woff');
}
@font-face {
    font-family: "Neue Montreal";
    font-weight: 500;
    font-style: italic;
    src: url('assets/fonts/ppneuemontreal-italic-webfont.woff2') format('woff2');
    src: url('assets/fonts/ppneuemontreal-italic-webfont.woff') format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PP Editorial New";
    color: #3e3b36;
}

html, 
body {
    width: 100%;
    height: 100vh;
    background: #b2b2a8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------ Scroll bar : new design ------------ */

::-webkit-scrollbar {
    width: 10px;
    background: #b2b2a8;
}
::-webkit-scrollbar-thumb {
    background: #b2b2a8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e7a92b;
}

.wrapper {
    margin: 1em 1em 5em;
}
.logo {
    width: 8em;
}


.container {
    width: 100%;
    height: 100vh;
    padding: 2em;
}
.row {
    display: flex;
    justify-content: space-between;
}
.hr {
    width: 100%;
    height: 1px;
    background: #3e3b36;
}
.reveal {
    width: 500px;
    height: 140px;
    position: relative;
    overflow: hidden;
}
.reveal div {
    position: absolute;
    line-height: 1.8em;
}
.h1 {
    font-size: 6.4em;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.h1 span {
    font-style: italic;
}

.secondary {
    font-family: "Neue Montreal";
}

.parag {
    padding: 0.8em 0;
    font-family: "Neue Montreal";
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.white-space {
    width: 100%;
    height: 120px;
}

.nav-item {
    width: 240px;
    border-radius: 0 0 40px 0;
    margin: 0.6em;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.nav-item > div {
    padding: 1em;
    font-family: "Neue Montreal";
    font-size: 14px;
}
.about {
    background: #fcefdf;
}
.projects {
    background: #db4c44;
}
.projects > div {
    color: #fff;
}
.contact {
    background: #e7a92b;
}
.num {
    margin-right: 0.8em;
}

@media (max-width: 900px) {
    .h1 {
        font-size: 2em;
    }
    .p {
        font-size: 8px;
    }
}