:root {
    --light-text: #fff;
    --dark-text: #000;
    --bg-start: white;
}


/* helpers */
.inter-600 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}


.white {
    color: var(--light-text);
}

.black {
    color: var(--dark-text);
}

.mt-lg {
    margin-top: 12em;
}

.pt-lg {
    padding-top: 12em;
}

.text-right {
    text-align: right;
}

.resume-body-font {
    font-size: 1.45em;
}

.upper {
    text-transform: uppercase;
}

/* helpers end */

body {
    background-color: var(--bg-start);
    overflow-x: hidden;
}

.nav__wrapper {
    width: 100%;
    background-color: var(--bg-start);
    position: fixed;
    z-index: 3;
    text-align: right;
    color: #212529;
}

#logo {
    display: flex;
    /* max-width: 165px; */
    max-height: 50px;
    width: auto;
    height: auto;
    padding-top: 1em;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-content: space-between;
    align-items: center;
    padding-bottom: 0px !important;
    margin-bottom: 0px;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links > li > a {
    text-decoration: none !important;
    padding: 1em 1.5em;
    color: #212529;
}

a > p {
    margin-bottom: 3px;
}

.mini {
    height: 3px;
    width: 0%;
    background-color: coral;
    transition: 0.2s;
}

a:hover > .mini {
    width: 100%;
}



.header__wrapper {
    position: relative;
}


.header-front {
    opacity: 1;
    padding-top: 0.5em;
}

/* .header-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    color: #ff0000;
    opacity: 0.5;
    z-index: -1;
} */


.hero {
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    max-width: 80vw;
}

.heading__wrapper {
    position: absolute;
    bottom: -2.5em;
    left: 4em;
}

.heading__wrapper > h1 {
    font-size: 84px;
}

#sec-line {
    opacity: 0;
}

.perfect {
    font-size: 36px;
    opacity: 0;
    transition: 1s;
}

.head-size {
    font-size: 52px;
}


.content__wrapper, .resume__wrapper {
    width: 100vw !important;
    background-color: white !important;
    margin: auto;
}

.p-item {
    display: flex;
    justify-content: space-around;
}

.content-desc {
    font-size: 24px;
}

.content-img {
    height: 45em;
    width: 45em;
}

.mobile-h {
    height: 50%;
}


@media screen and (max-width: 430px) {
    .hero {
        max-width: 98vw;
        width: 98vw !important;
        margin: auto;
        height: 93vh;
    }
    
    .heading__wrapper {
        left: 1em;
    }

    .heading__wrapper > h1 {
        font-size: 55px;
    }

    #ed {
        display: none;
    }

    #works {
        display: flex;
        justify-content: center;
    }

    .mobile-h {
        height: unset;
    }

    .head-size {
        font-size: 42px;
    }

    .content-desc {
        font-size: 20px;
    }

    .content-img {
        width: unset;
        height: unset;
    }

    .mt-lg {
        margin-top: 8em;
    }

    .pt-lg {
        padding-top: 8em;
    }

    .resume-body-font {
        font-size: 1.25rem;
    }

    .text-right {
        text-align: unset;
    }
}