/* Font Open Sans */
@font-face {
    font-family: 'Open Sans';    
    src: url("../fonts/Open_Sans/OpenSans-Regular.ttf");
    font-weight: 400;
    font-variant: normal;
}
@font-face {
    font-family: 'Open Sans';    
    src: url("../fonts/Open_Sans/OpenSans-Regular.ttf");
    font-weight: 400;
    font-style: italic;
    font-variant: cursive;
}



  /* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
    font-weight: 400;
}

a {
    color: #dd9b00;
    text-decoration: none;
}

a:hover {
    color: #dd9b99;
    text-decoration: underline;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: azure;
    color: #202020;
    /* font-family: 'Open Sans' !important; */
}




/* BEGINING OF SMALL NAV SECTION */
#small-nav {
    height: 10vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.list-group-item.active {
    z-index: 2;
    color: #f5f5f5;
    background-color: #dd9b00;
    border-color: #dd9b00;
}

.list-group-item {
    color: #202020;
}

.small-navbar-nav {
    height: 10vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0 15%;
    font-size: 1rem;
    word-spacing: 5px;
}

#greeting {
    color: #fff;
    font-size: 0.9rem;
    color: #dd9b00;
}
/* END OF SMALL NAV SECTION */





/* SIDE NAV */
.nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.remove_sideNavWidth { 
    display: unset;
    flex-direction: unset;
    justify-content: unset;
    align-items: unset;
}  

.add_sideNavWidth {    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* .bigS_nav {
    display: unset;
    flex-direction: unset;
    justify-content: unset;
    align-items: unset;
} */

.smallS_nav { 
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.fa-home,
.fa-free-code-camp,
.fa-user-secret,
.fa-bullseye,
.fa-code {
    /* margin-inline: 120px; */
    font-size: 2rem;
    color: #0a1320;
}


main {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}


section {
    padding-block: 7%;
}

aside {
    position: fixed;
    top: 10vh;
    left: 0;
    height: 100vh;
    width: 15%;
    background-color: #dd9b00;
    color: #202020;
}

article {
    width: 85%;
    height: auto;
    position: absolute;
    top: 10vh;
    right: 0;
    background-color: azure;
    color: #202020;
}

#hero {
    padding-block: 0;
}

#hero img {
    width: 100%;
    height: 50vh;
}

#hero blockquote {
    padding-block: 5%;
    padding-inline: 7%;
    font-size: 2rem;
    font-style: italic;
    font-variant: cursive;
}


#my--motivation img,
#my__journey img,
#my_skillset img,
#my_goals img {
    width: 100%;
    /* height: 60vh; */
}

#my_skillset .card {
    background-color: #fff;
}

#my_skillset .card-title {
    background-color: #0a1320;
    color: #fff;
}





/* 1155px or Smaller Screens */
@media only screen and (max-width: 1155px) {

    #hero img {
        width: 100%;
        height: 15vh;
    }
}