/* Nav */
#main-nav {
    background-color: rgb(86 86 86);
}

#main-nav #brand-container {
    justify-content: center;
}

#main-nav .nav {
    justify-content: end;
}

nav a {
    color: #00c9ff;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
}

nav a:hover {
    color: #00ffb6;
    font-family: 'Quicksand', sans-serif;
}

nav .navbar-brand {
    font-size: 1rem;
}
/* End Nav */

/* Intro Section */
#intro-section {
    margin: 15em 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#intro-section #intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto 5em;
}

#intro-section #memoji-pic {
    height: 150px;
    width: auto;
    border-radius: 25%;
    box-shadow: 0px 5px 7px grey;
    transition: all .2s ease-in-out;
}

#intro-section #memoji-pic:hover {
    transform: scale(1.05);
}
/* End Intro Section */

/* About Section */
#about-section {
    margin: 15em 0;
    position: relative;
}

#about-section .career-position {
    font-family: 'Quicksand', sans-serif;
}
/* End About Section */

/* Portfolio Section */
#portfolio-section {
    margin: 15em 0;
}

#portfolio-section a {
    position: relative;
    margin: 1em 0;
}

#portfolio-section a .portfolio-img {
    width:  100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid black;
    border-radius: 2rem;
    box-shadow: 0px 5px 7px gray;
    transition: all .2s ease-in-out;
}

#portfolio-section a:hover .portfolio-img { 
    transform: scale(1.05); 
}

#portfolio-section a .portfolio-img-overlay {
    position: absolute;
    transition: all .2 ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#portfolio-section a:hover .portfolio-img-overlay {
    transform: scale(1.05); 
    opacity: .6;
}

#portfolio-section a .overlay-text {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    font-weight: 900;
    font-size: 2em;
    text-align: center;
}

#portfolio-section a:hover .overlay-text {
    display: flex;
}
/* End Portfolio Section */

/* Footer Section */
footer {
    background-color: #00c9ff;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    font-weight: bold;
}

footer a:hover {
    color: #00ffb6;
}

footer nav {
    display: flex;
    justify-content: start;
}

footer #copyright-container {
    display: flex;
    justify-content: end;
}
/* End Footer Section */

/* General */
.blue-text {
    color: #00c9ff;
    font-family: 'Quicksand', sans-serif;
}

.year-range {
    opacity: 0.5;
}

hr {
    width: 90%;
    border-width: 2px;
    border-color: #00c9ff;
}

body {
    background-color: rgb(242, 242, 242);
}
/* End General */

@media (max-width: 767px) {
    #main-nav .nav, #main-nav #brand-container {
        justify-content: center;
        text-align: center;
    }

    footer nav, footer #copyright-container {
        justify-content: center;
    }
}