:root{
    --dark-sky-blue: #45A29E;
    --light-sky-blue: #66FCF1;
    --light-grey: #C5C6C7;
    --dark-grey: #1F2833;
    --semi-black: #0B0C10;
    --overlay: #45A29EB3;
    --white: #f4f4f4;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    /* scroll-behavior: smooth; */
    
}

body{
    
    font-family: 'Roboto', sans-serif;
    line-height: 1.6rem;
    overflow: none;
}

a {
    text-decoration: none;
}


section{

    height: 100vh;
}

.navigable-section{
    margin-left: 16rem;
    background-color: var(--light-grey);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.navigable-section h1 {
    color: var(--semi-black);
}

#home {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}


#main-nav{
    position: sticky;
    top: 0;
    left:0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 16rem;
    background: var(--dark-grey);
    font-size: 1rem;

}

#main-nav h3 {
    font-size: 1.5rem;
}

#logo{
    margin: 2rem auto 0;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: url(/img/head-2.png) no-repeat 48% 10%;
    background-size: 275px 200px;
}

#logo-label{
    margin-top: 1rem;
    text-align: center;
}

#main-nav ul{

    /* margin: 2rem auto; */
    margin-top: 2rem;
    list-style: none;
    width: 100%;
    padding-left: .5rem; 
}

#main-nav li a{

    display: block;
    font-size: 1rem;
    line-height: 1.6rem;
    padding: 1rem 0 1rem 1rem;
    margin: auto 0;
    text-decoration: none;
    color: var(--light-grey);
    height: 100%;
    
}

#main-nav ul li a:hover,
#main-nav ul li a:focus,
.active {

    background-color: var(--dark-sky-blue);
    color: var(--semi-black) !important;
    transition: all 400ms ease-in-out;
    
}


/* End nav bar */

/* Home section */
#home{

    position: relative;
    /* display: flex;
    justify-content: left;
    align-items: center; */
    /* height: 100vh; */
    
}

#bg-image{

    background: url(/img/macbook-pro-on-brown-wooden-table-2312369.jpg) no-repeat center center/cover;
    filter: blur(4px);
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left:0;
    height: 100%;
    width: 100%;

}

#home::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(11, 12, 16, 0.7);
    filter: blur(4px);
    z-index: 1;
}


#intro {

    display: flex;
    /* margin-bottom: 20rem; */
    flex-direction: column;  
    height: 80%;  
    z-index: 2;
}

#intro-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;
}

 h1, h3{
 color: var(--white);

}

#home h1 {
    font-size: 4rem;
}

#home h3{
  padding: 1rem;
}

#direction{

    height: 20%;
    padding-top: 5%;
    z-index: 2;
    
}

#direction i{
    animation: pulse 2s linear infinite;
    color: var(--white);
}

@keyframes pulse {

    0% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(0.8, 0.8, 0.8);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }

}

#intro-img{

    margin: auto;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: url(/img/head-2.png) no-repeat 48% 10%;
    background-size: 275px 200px;
    z-index: 2;
}

#intro-text{
    margin-top: 2rem;
    z-index: 2;
}

#resume-social{

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.social i{

    padding: .5rem;
    font-size: 2rem;
    color: var(--white);
}

.social i:hover,
#direction i:hover {
    color: var(--dark-sky-blue);
    transition: all 400ms ease-in-out;
}

.social{
    margin-left: 1rem;
}

#resume-btn{
    margin-right: 1rem;
}

.btn{

    background-color: var(--white);
    border-radius: 5px;
    /* height: 2rem; */
    width: 5rem;
}

.btn:hover{
    cursor: pointer;
    background-color: var(--dark-sky-blue);
    transition: all 400ms ease-in-out;

}


/* End home section */

/* About section */
section #about{
    background: var(--white);
}


/* End About section */


.info-container{
    position: relative;
}

#about{
    position: absolute;
    top: 0;
    left: 0;
}