/*|| Banner */
.banner-container{
    height: 50vh;
    background-image: url(../images/nyc.jpg);
    background-position: 75% 10%;
    background-repeat: no-repeat;
    background-size: cover;
    
    position: relative;
    z-index: 0;
    
}

.banner-overlay-blur{
    height:100%;
    width:100%;
    position: absolute;
    background-color: rgba(255,255,255, 0.6);
}

h1.banner-text{
    position: relative;
    text-align: center;
    z-index: 2;
    padding-left: 10vw;
    padding-right: 10vw;
    top: 35%;
    margin: 0px;
}


.profile-pic{
    object-fit: cover;
    height: 250px;
    width:250px;
    border-radius: 200px;
    border: 2px solid white;

    z-index: 3;
    position: relative;

    margin-top: -125px; /*height/2*/
    margin-left: 10%;
}

/*|| About me paragraphs*/
p.about-me{
    margin:0;
    min-height: 50vh;
    padding: 5%;
    color:white;
    font-weight: 250;
    font-size: 1.7rem;
    line-height: 50px ;
}

p.about-me:last-of-type{
    min-height: 30vh;
}


/*|| Background image overlay*/
.body-img{
    height:100vh;
    background-attachment: fixed;
    background-size: cover;
}

@media (width >= 1750px) {
    p.about-me{
        font-size: 2rem;


    }
    .profile-pic{
        height: 300px;
        width:300px;
        margin-top: -150px; /*height/2*/

    }
}

  @media (width >= 1750px) {
    p.about-me{
        font-size: 2rem;


    }
    .profile-pic{
        height: 300px;
        width:300px;
        margin-top: -150px; /*height/2*/

    }
}

@media (width <= 550px) {
    p.about-me{
        font-size: 1.5rem;
    }
}



