* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #CF7D2D;
    --bright: #B5C5CB;
    --footer-background: #0E3E4C;
    --text-color: #fff;
}


/* Headings and container box for the main section */
.heading-container {
    display: flex;
    justify-content: center;
}

.heading-2 {
    background-color: var(--dark);
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
    padding: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.heading-3 {
    color: var(--dark);
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.heading-4 {
    text-transform: uppercase;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.heading-4-thoughts {
    color: black;
}

.heading-5 {
    font-size: 17px;
    color: var(--dark);
    font-weight: bold;
    text-transform: uppercase;
}

.container-box {
    margin: 30px auto;
    font-family: 'Roboto', sans-serif;
}


/* links and arrows */
a {
    text-decoration: none;
    color: black;
}

a:visited {
    color:black;
}

.arrows {
    color: var(--dark);
    font-weight: bold;
}


/* header section */
.header-section {
    background: url(https://cdn.pixabay.com/photo/2017/12/07/22/22/ocean-3004700_1280.jpg);     
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
    grid-template-rows: repeat(13, 40px);
}


/* header icons */
.nav-box {
    grid-column: 11/12;
    grid-row: 2;
    justify-self: end;
}

.social-media-icon-top i {
    color: #18252a;
    width: 40px;
	height: 40px;
	font-size: 28px;
	transition: all 0.2s ease-in-out;
}

.social-media-icon-top i:hover {
    opacity: .7;
}


/* header text */
.header-text-box {
    position: absolute;
    grid-row: 5;
    grid-column: 2;
} 

.header-text {
    color: #18252a;
}

.name {
    font-size: 1.063rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.job-title {
    font-size: 3.125rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.04em;
}

.additional-skill {
    font-size: 1.75rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.04em;
}


/* header profile picture */
.profile-picture {
    grid-row: 10;
    grid-column: 11;
    width: 180px;
    height: 180px;
    left: 171px;
    top: 356px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid whitesmoke;
    overflow: hidden;
    z-index: 2;
}

.profile-picture > img {
    width: 110%;
  }


/* Summary */
.summary {
    width: 320px;
    margin: 30px auto;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
}

.line {
    border: 1px solid var(--dark);
    background-color: var(--dark);
    width: 35px;
    display: inline-block;
    margin-bottom: 4px;
    margin-right: -10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: var(--dark);
    border-radius: 50%;
    display: inline-block;
}


/* Tech */
.tech {
    width: 320px;
    margin: 0 auto 30px auto;
}

.highlight {
    color: var(--dark);
}


/* Projects*/
.projects {
    width: 320px;
    margin: 0 auto 30px auto;
}

.project-img-container {
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
}

.a-new-fit {
  background: url('./images/anewfit-img.JPG');
  background-repeat: no-repeat;
  background-size: cover;
}

.parker-photography {
  background: url('./images/parker-photography.JPG');
  background-repeat: no-repeat;
  background-size: cover;
}

.todo-app {
  background: url('./images/Todo-img.PNG');
  background-repeat: no-repeat;
  background-size: cover;
}
  
.labyrinth {
  background: url('./images/labyrinth-img.PNG');
  background-repeat: no-repeat;
  background-size: cover;
}

.movie-quiz {
    background: url('./images/movie-quiz-img.PNG');
    background-repeat: no-repeat;
    background-size: cover;
}

.happy-thoughts {
    background: url('./images/happy-thoughts-img.PNG');
    background-repeat: no-repeat;
    background-size: cover;
}

.movie-app {
    background: url('./images/movie-app-img.PNG');
    background-repeat: no-repeat;
    background-size: cover;
}

.survey {
    background: url('./images/christmas-survey-img.PNG');
    background-repeat: no-repeat;
    background-size: cover;
}

.weather {
    background: url('./images/weather-app-img.PNG');
    background-repeat: no-repeat;
    background-size: cover;
}

.github {
    background: url('./images/github-tracker-img.PNG');
    background-repeat: no-repeat;
    background-size: cover;
}

.img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(156, 166, 197, 0.5);
    transition: 0.5s ease;
}

.img-overlay:hover {
    background-color: transparent;
}

.project-img-container:hover h4 {
    display: none;
}

.heading-project-img {
    position: absolute;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: white;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tags p {
    background-color: var(--bright);
    height: 28px;
    margin: 10px 8px 0 0;
    padding: 4px;
    letter-spacing: 0.02em;
    border-radius: 2px;
}

.fab {
    font-size: 31px;
    color: var(--footer-background);
    padding-top: 9px;
}


/* thoughts */
.my-thoughts {
    width: 320px;
    margin: 0 auto 30px auto;
}

.featured-thoughts {
    margin-bottom: 5px;
}

.thoughts-img-container {
    aspect-ratio: 16/9;
}

.why-i-code {
    background: url('./images/japanese_gate.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
}

.another-thought {
    background: url('./images/workdesk.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
}


.container-box-thought1 {
    margin: 30px auto;
    font-family: 'Roboto', sans-serif;
}

.thought-section-date {
    text-transform: uppercase;
    color:var(--dark);
}


/* Skills */
.skills {
    width: 320px;
    margin: 50px auto;
}

.skills-container {
    margin: 30px auto 50px auto;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 260px;
}

.skills-container p {
    padding-top: 7px;
}


/* for more */
.for-more {
    width: 320px;
    margin: 0 auto;
}

.container-bottom-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.box-icons-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
}

.box-icons-bottom i {
    font-size: 36px;
    color: #18252a;
}

.box-icons-bottom p {
    color: #18252a;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.688rem;
    text-align: center;
    padding-top: 10px;
}


/* Footer */
.footer {
    width: 100%;
    background-color: var(--footer-background);
    color: var(--text-color);
    margin-left: auto;
    margin-right: auto;
}

.heading-footer {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.313rem;
    margin-top: 60px;
    margin-bottom: 30px;
}

.text-footer {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.063rem;
    padding-bottom: 80px;
}

.text-footer a {
    color: var(--text-color);
}

/* mobile */
@media (max-width: 667px) {

.container-box-thought2 {
    display: none;
}

.about-code {
    display: none;
}
}

/* tablet */
@media (min-width: 668px) and (max-width: 1023px) {

.header-text-box {
    grid-row: 7;
}
   
.profile-picture {
    grid-row: 9;
    width: 240px;
    height: 240px;
}

.social-media-icon-top i {
	font-size: 34px;
}
    
.summary {
    background-color: #f4f4f4;
    width: 100%;
    padding: 60px 100px 60px 100px;
    margin-top: -10px;
}

.tech {
    width: 60%;
    margin: 0 auto 50px auto;
    text-align: center;
}

.projects {
    background-color: #f4f4f4;
    width: 100%;
    padding: 30px 50px;
    margin-bottom: 0;
}

.featured-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin: 0 auto;
}

.project-img-container {
    position: relative;
    max-width: 500px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
}

.heading-project-img {
    text-align: center;
    font-size: 22px;
}

.my-thoughts {
    width: 100%;
    padding: 30px 150px 0 150px;

    justify-items: center;
}

.featured-thoughts {
  display: grid;
  /* grid-template-columns: 2fr 2fr;
  column-gap: 20px; */
  grid-template-columns: 2fr;
  max-width: 500px;
  margin: 0 auto;
}

.thoughts-img-container {
    max-width: 500px;
    height: auto;
}

.container-box-thought2 {
    margin: 30px auto;
    font-family: 'Roboto', sans-serif;
}

.skills {
    background-color: #f4f4f4;
    width: 100%;
    padding: 30px 100px 30px 100px;
    margin: 0;
}
    
.skills-container {
    width: 400px;
    margin: 30px auto 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr;
    column-gap: 50px;
}

.for-more {
    width: 320px;
    margin: 30px auto 0 auto;
}
}


/* desktop */
@media (min-width: 1024px) {

.header-text-box {
    grid-row: 7;
}

.profile-picture {
    grid-row: 9;
    width: 250px;
    height: 250px;
}

.social-media-icon-top i {
	font-size: 34px;
}
    
.summary {
    background-color: #f4f4f4;
    width: 100%;
    padding: 70px 250px 60px 250px;
    margin-top: -10px;
}

.summary p {
  max-width: 1000px;
  margin: 0 auto;
}

.tech {
    width: 60%;
    margin: 0 auto 50px auto;
    text-align: center;
}

.projects {
    background-color: #f4f4f4;
    width: 100%;
    padding: 30px 200px;
    margin-bottom: 0;
}

.featured-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;

    max-width: 1000px;
    margin: 0 auto;
}

.container-box {
  max-width: 500px;
}

.project-img-container {
    position: relative;
    max-width: 500px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
}

.my-thoughts {
    width: 100%;
    padding: 30px 150px 0 150px;
    
    justify-items: center;
}

.featured-thoughts {
  display: grid;
  /* grid-template-columns: 2fr 2fr;
  column-gap: 20px; */
  grid-template-columns: 2fr;
  max-width: 500px;
  margin: 0 auto;
}

.thoughts-img-container {
    max-width: 500px;
    height: auto;
}

.container-box-thought2 {
    margin: 30px auto;
    font-family: 'Roboto', sans-serif;
}

.skills {
    background-color: #f4f4f4;
    width: 100%;
    padding: 30px 100px;  
}
    
.skills-container {
    width: 400px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr;
}

.for-more {
    width: 320px;
    margin: 30px auto 0 auto;
}

.box-icons-bottom {
    padding-right: 20px;
    padding-left: 20px;
}
}




