/* Master Styles */
body {
    margin: 0px;
    font-family: Helvetica, sans-serif;
    background-color: black;
    color: white;
}

.container {
    display: grid;
    margin: auto;
    grid-template-columns: 1fr;
    max-width: 1400px;
    height: 100%;
    padding: 0 38px 0 38px;
}

/* Nav Styles */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 38px 0 38px 0;
}

.right-side {
    display: flex;
}

.nav-wrapper > .right-side > div {
    margin-left: 20px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid white;
}

.nav-link-wrapper a:hover {
    color: white;
}

.active-nav-link {
    border-bottom: 1px solid white;
}

.active-nav-link a {
    color: white !important;
}

/* Portfolio Styles */

.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 650px) {
    .portfolio-items-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.portfolio-item-wrapper {
    position: relative;
}

.portfolio-img-background {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
}

.img-text-wrapper {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.img-text-wrapper .subtitle {
    transition: 1s;
    font-weight: 600;
    font-size: 12px;
    color: transparent;
}

.img-text-wrapper:hover .subtitle {
    font-weight: 600;
    font-size: 12px;
    color:white;
}

.img-darken {
    transition: 0.5s;
    filter: brightness(20%);
}

/* About Page */
.two-column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profile-image-wrapper img {
    width: 100%;
}

.profile-content-wrapper {
    padding: 30px;
}

.profile-content-wrapper h1 {
    color: lightseagreen;
}