/* Master Styles */
Body{
    font-family: "Lato", sans-serif;
    margin: 0px;
}

.container{
    display: grid;
    grid-template-columns: 1fr;
}

/* Nav Styles */
.nav-wrapper {
    display: flex;
    background: #fff;
    justify-content: space-between;
    padding: 25px;
    /*border-bottom: 1px solid black;*/
    position: sticky;
    top: 0;
    z-index: 2;

}


.left-side {
    display: flex;
    padding-top: 20px;
}

.nav-wrapper > .left-side > div {
    margin-right: 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: black;
    text-decoration: none;
    transition: color 0.5s;
}

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

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

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

}

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

.brand{
    display: flex;
}

.brand i {
    color:black;
    padding-left: 20px;
    padding-top: 6px;
}

/* Portfolio Styles */

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

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

.portfolio-img-background {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.logo-wrapper img{
    width: 50%;
    margin-bottom: 20px;
}



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

.img-text-wrapper:hover .subtitle{
    font-weight: 600;
    font-size: 25px;
    color: lightseagreen;

}

.img-darken{
    transition: 1s;
    filter: brightness(10%);
}



/* About page */
.two-column-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 100px;
    row-gap: 50px;
}

.profile-image-wrapper img {
    width: 60%;
    border-radius: 15px;
}
.profile-image-wrapper{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}


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

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


/* work page */

.work-image-wrapper img {
    width: 50%;
    padding: 30px 30px;
}
.work-image-wrapper{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}



.work-content-wrapper {
    padding: 10px;
}

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

p{
    text-align: justify;
}

/* cert page */

.cert-image-wrapper img {
    width: 60%;
}

.cert-content-wrapper {
    padding: 10px;
}

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

.four-column-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 10px;
    row-gap: 1px;
    justify-items: center;
}

/* hobbies */

.nest-grid-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;

}

.hobby-image-wrapper img{
    width: 65%;
    padding: 20px;

}

.hobby-content-wapper {
    padding: 30px;
    line-height: 1;
}

/* coding */

.coding-image-wrapper{
    width: 60%;
}

.coding-image-wrapper img{
    width: 100%;
    padding: 20px;
    padding-left: 40px;
    align-items: center;
}


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

.coding-content-wrapper p{
    padding-right: 40px;
}

.coding-two-column-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1px;
    row-gap: 5px;
}

.coding-image-wrapper {
    margin: auto;
    width: 50%;
}

/* Coding Buttons */
.btn {
    font-size: 20px;
    border-radius: 5px;
    background: white;
    margin-right: 20px;
}

.btn a {
    text-decoration: none;
    color: black;
}

.btn a:hover {
    color: lightseagreen;
}

/* Cert */

#timeline ul {
    background: white;
    padding: 50px 0;
}

/* Creates line in the middle for the time line*/
#timeline ul li {
    list-style: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 1px;
    background: lightseagreen
}

/* Creates boxs off time line */
#timeline ul li div {
    position: relative;
    bottom: 0;
    width: 500px;
    padding: 5px;
    border: 4px solid black;
    border-radius: 12px;
}

/* Right side of time line*/
#timeline ul li:nth-child(odd) div {
    left: 40px;
}

/* Right side of time line */
#timeline ul li:nth-child(even) div {
    left: -554px;
}

/* Dots */
#timeline ul li:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 25px;
    height: 25px;
    background: black;
    transform: translateX(-50%);
    border-radius: 50%;
}

/* Arrows Base */
#timeline div:before {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Right Side Arrows */
#timeline ul li:nth-child(odd) div:before {
    left: -20px;
    border-width: 8px 16px 8px 0;
    border-color: transparent black transparent transparent;
}

/* left Side Arrows */
#timeline ul li:nth-child(even) div:before {
    right: -20px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent black;
}



