/*Joy's Css Coding*/

/*for all pages*/

body {
    background-color: rgb(247, 239, 222);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    
}

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

/*This section is for the nav bar.*/
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-color:rgb(101, 87, 69);
    color: rgb(255, 255, 255);
    overflow: hidden;
}

.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    overflow: hidden;
}

.nav-links li {
    margin-left: 150px;
    overflow: hidden;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.nav:hover {
    background-color: rgb(155, 140, 113);
    transition: 0.67s;
    border-radius: 50px;
    padding: 5px;
}

.nav:active {
    background-color: black;
}

/*nav logo*/
.logo {
    display: flex;    
    font-size: 20px;
    overflow: hidden;
    flex-wrap: wrap;
}

/*----------LINK IN BIO SECTION----------*/
/*kind of rushed*/
.index-top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px;   
    overflow: hidden;
}

.profile_photo img {
    display: flex;
    border-radius: 500px;
    overflow: hidden;
    border-style: solid;
}

.name {
    text-align: center;
    padding: 5px;
}

.occupation {
    text-align: center;
}

.index-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
}

.index-links .fa {
    text-decoration: none;
    color: rgb(101, 87, 69);
}

.index-links a:active {
    color: rgb(255, 0, 0);
}

.index-links a:hover {
    transition: 1s;
    color: black;
}

.index-links a:visited {
    color: rgb(0, 0, 0);
}

.index-links a:nth-of-type(1) {
  color: rgb(66, 61, 49);
}

.index-links a:nth-of-type(2) {
  color: rgb(218, 132, 46);
}

.index-links a:nth-of-type(3) {
  color: rgb(0, 0, 0);
}

.hr-index {
    border-top: 2px solid rgb(101, 87, 69);
    margin-bottom: 20px;
    margin-top: 10px;
}

.h2-title-first {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;       
}

.first-section-of-webpage {
    background-color: rgb(214, 194, 167);
    margin: 50px;
    padding: 5px;
    border-radius: 30px;    
    overflow: hidden;
    border-style:solid;
    border-color: rgb(101, 87, 69);
    box-shadow: 5px 5px rgb(101, 87, 69);

}

.webpages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;    
    text-decoration: none;
    list-style-type: none;
    color: rgb(155, 140, 113);

}

.webpages a:hover {
    transition: 0.67s;
}

.webpages a:visited {
    color: rgb(0, 0, 0);
}

.webpages a:active {
    color: rgb(255, 0, 0);
}

.webpages a:first-child {
    color: rgb(101, 87, 69);

}

.second-section-of-webpage {
    background-color: rgb(101, 87, 69);
    border-radius: 30px;
    margin: 50px;
    padding: 5px;
    overflow: hidden;
    border-style: solid;
    border-color: rgb(214, 194, 167);
    box-shadow: 5px 5px rgb(214, 194, 167);
}

.h2-title-second {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;  
}

.mult120-webpages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;  
    text-decoration: none;
    list-style-type: none;
}

.mult120-webpages a:nth-child(2) {
    background-color: rgb(101, 87, 69);
    border-radius: 50px;
    padding: 10px;
    color: rgb(214, 194, 167);

}

.mult120-webpages a:first-child {
    background-color: rgb(101, 87, 69);
    border-radius: 50px;
    padding: 10px;
    color: rgb(214, 194, 167);
}

.mult120-webpages a:last-child {
    background-color: rgb(101, 87, 69);
    border-radius: 50px;
    padding: 10px;
    color: rgb(214, 194, 167);
}

/*this section will be for my hero section on the About Me webpage.*/
.aboutme-text {
    text-align: left;
    border-radius: 30px;
    color: rgb(255, 255, 255);
}

.h1-aboutme-hero {
    display: flex;
    font-size: 80px;
    margin-bottom: 10px;
    justify-content:left;
    align-content: center;
    flex-wrap: wrap;
}

.aboutme-hero-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-image: linear-gradient(rgba(62, 36, 6, 0.514), rgba(155, 140, 113, 0.5)),
    url(assets/abstract-5104177.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    padding: 80px;
}

.aboutme-hero-btn {
    display: flex;
    text-decoration: none;
    color: aliceblue;
    background-color: rgb(101, 87, 69);
    margin-top: 20px;
    padding: 10px;
    padding-top: 10px;
    border-radius: 15px;
    margin-right: 300px;
    transition: 0.67s;
    flex-wrap: wrap;
}

.aboutme-hero-btn:hover {
    background-color: rgb(247, 239, 222);
    color: rgb(101, 87, 69);
}

.aboutme-hero-btn:active {
    background-color: black;
}

.about-me-hero {
    height: auto;
}

.aboutme-main-content {
    margin-left: 20px;
    padding: 20px;
}

/*content divider between hero section and the main section*/
hr.solid {
    border-top: 4px solid rgb(168, 153, 121);
    margin-bottom: 20px;
    /*can you see it?*/
}

/*body main for about me.*/

.aboutme-section-top {
    overflow: hidden;
    margin-bottom: 20px;
}

.aboutme-first-image img{
  float: right;
  width: 300px;
  margin-left: 20px;
  border-radius: 20px;

}

.about-first-image {
    overflow: hidden;
    display: flex;    
    padding-left: 10px;
}

.aboutme-text-1 {
    display: flex;
    justify-content: center;
    text-align: center;
}

.aboutme-second-image img {
  float: right;
  width: 300px;
  margin-left: 20px;
  border-radius: 20px;
}

.aboutme-second-image {
    display: flex;
    overflow: hidden;
}

.aboutme-text-2 {
    display: flex;
    justify-content: center;
    text-align: center;
}

.aboutme-third-image img {
    display: flex;
    float: right;
    width: 250px;
    margin-left: 30px;
    overflow: hidden;
    clear: both;
}

.textbox-inbetween {
    display: flex;
    align-content: center;
    background-color: rgb(214, 194, 167);
    padding: 50px;
    margin-left: 20px;
    overflow: hidden;
    overflow-y: auto;
    height: 300px;
    width: 670px;
}

.aboutme-section-bottom {
    display: flex;
    overflow: hidden;
    padding: 70px;
    margin: 30px;
}

.aboutme-fourth-image img{
    display: flex;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 300px;
    height: auto;
    overflow: hidden;
}

/*another content divider*/
hr.solid-body-1 {
    border-top: 4px solid rgb(168, 153, 121);
}


/*this is a content divider between footer and the main section*/

hr.solid-last {
    border-top: 4px solid rgb(168, 153, 121);
}

/*this is the footer section*/
.footer-yep {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(101, 87, 69) ;
    padding: 30px;
    
}

.footer-socials .fa {
    padding: 20px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    color: rgb(255, 255, 255);
}

.footer-socials .fa:hover {
    color: rgb(168, 153, 121);
    transition: 0.67s;
}

.footer-title {
    font-size:x-large;
    color: rgb(255, 255, 255);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    text-decoration: none;
    color: rgb(255, 255, 255);
    flex-direction: row;
    gap: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style-type: none;    
    flex-wrap: wrap;
}

.footer-links a:hover {
    background-color: rgb(155, 140, 113);
    transition: 0.67s;
    border-radius: 5px;
    padding: 5px;
}

.footer-links a:visited {
    color: black;
}

.footer-links a:active {
    background-color: rgb(0, 0, 0);
}

/* ----------PORTFOLIO SECTION---------- */

.portfolio-hero-image {
    display: flex;
    align-items: center;    
    background-position: center;    
    justify-content: center;    
    background-size: cover;    
    background-repeat: no-repeat;    
    text-align: center;
    grid-template-columns: 1fr 1fr;
    height: 70vh;
    padding: 80px;
    background-image: linear-gradient(rgba(62, 36, 6, 0.514), rgba(155, 140, 113, 0.5)),
    url(assets/fractal-676241_1280.jpg);
}

.portfolio-text {
    color: rgb(255, 255, 255);
    text-align: center;
    overflow: hidden;
}

.h1-portfolio-hero {
    font-size: 100px;
}

/*fix*/
.art.title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.portfolio-card-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.portfolio-card {
    width: 300px;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgb(255, 255, 255) ;
    box-shadow:  0px 3px 4px 0px;
    margin: 20px;

}

.portfolio-card img {
    width: 100%;
    height: auto;
}

.card-text {
    padding: 20px;
}

.portfolio-card.button {
    text-decoration: none;
}

.portfolio-fourth-title {
    padding: 20px;
    margin: 10px;
}

.portfolio-fourth-image {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.portfolio-fourth-image img {
    border-radius: 10px;
    width: 300px;
    height: auto;
    margin-left: 50px;
    overflow: hidden;
}

.portfolio-fourth-image-text {
    padding: 30px;
    flex: 1;
}

.portfolio-fifth-title {
    padding: 20px;
    margin: 10px;
}

.portfolio-fifth-image img {
    border-radius: 10px;
    width: 300px;
    height: auto;
    margin-left: 50px;
    overflow: hidden;
}

.portfolio-fifth-image {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.portfolio-fifth-image-text {
    flex: 1;
    padding: 20px;
}

/* ----------CONTACT ME SECTION---------- */
/*this section is the top part of the body*/
.contactme-top-section img {
    border-radius: 20px;
}

.wanna-talk {
    margin-top: 50px;
}

.contactme-top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px;
}

/*content divider*/
hr.solid-1-contactme {
    color: 6px solid black;
}

/*this section is the ways you can contact me*/
.contactme-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 50px;
    margin: 50px;
    padding: 50px;
    text-decoration: none;
    gap: 80px;
    background-color: rgb(214, 194, 167);
    border-radius: 90px;
    border-style: solid;
    box-shadow: 5px 5px;
}

.contactme-links .fa {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.contactme-links a:active {
    color: brown;
}

.contactme-links a:first-child {
    background-color: rgb(101, 87, 69);
    border-radius: 50px;
    padding: 10px;
    color: rgb(214, 194, 167);
}

.contactme-links a:nth-child(2) {
    background-color: rgb(101, 87, 69);
    border-radius: 50px;
    padding: 10px;
    color: rgb(214, 194, 167);
}

.contactme-links a:last-child {
    background-color: rgb(101, 87, 69);
    border-radius: 50px;
    padding: 10px;
    color: rgb(214, 194, 167);
}

/*andddd done*/