/* body{
    background-color:;
} */

*,
*::before,
*::after{
    box-sizing: border-box;
}

/* Custom Properties */
:root{
    --ff-primary: 'M PLUS Code Latin', sans-serif;
    --ff-secondry: 'Encode Sans', sans-serif;

    --clr-light: #EEEDDE;
    --clr-dark: #141E27;
    --clr-accent: #E0DDAA;

    --fs-h1: 3rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
}

@media only screen and (min-width: 768px){
    :root{
        --fs-h1: 4rem;
        --fs-h2: 3.7rem;
        --fs-h3: 1.5rem;
        --fs-body: 1.125rem;
    }
}

header{
    display: flex;
    width: 100%;
    background-color: var(--clr-dark);
    height: 70px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
}
.logo{
    width: 20%;
    margin-top: 1%;
    cursor: pointer;
}
.logo_name{
    text-decoration: none;
    color: var(--clr-accent);
    font-size: 20px;
    font-family: var(--ff-primary);
    /* margin: 10%; */
    margin-left: 4%;
}
.nav{
    width: 50%;
    /* border: 1px solid white; */
    margin-top: 0%;
    text-decoration: none;
}
.nav__list{
    width: 100%;
    margin: 0%;
    height: 100%;
    display: flex;
    /* border: 1px solid yellow; */
    list-style: none;
}
.nav__items{
    display: inline-block;
    padding: 0px 20px;
}
.nav__link--a{
    color: var(--clr-light);
    font-size: 30px;
    text-decoration: none;

    /* margin: 2%; */
    
}

body{
    background-color: var(--clr-light);
    color: var(--clr-dark);
    margin: 0;
    font-family: var(--ff-secondry);
    font-size: var(--fs-body);
    line-height: 1.6;
}
img{
    display: block;
    max-width: 100%;
}

h1,
h2,
h3{
    line-height: 1.1;
    margin: 1%;
}
h1{ font-size: var(--fs-h1)}
h2{ font-size: var(--fs-h2)}
h3{ font-size: var(--fs-h3)}

section{
    padding: 5em 2em;
}

:focus{
    outline: 3px solid var(--clr-accent);
    outline-offset: 3px;
}

.btn{
    display: inline-block;
    padding: .5em 1.5em;
    background: var(--clr-accent);
    color: var(--clr-dark);
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-top: 5%;
    transition: transform 200ms ease-in-out;
    justify-content: center;
    /* margin-left: 40%; */
}
.btn:hover{
    transform: scale(1.1);
}

.section__title{
    margin-bottom: .25em;
}

.section__title--intro{
    font-weight: lighter;
}

.section__title--intro strong{
    display: block;
}
.section__subtitle{
    margin: 0;
    font-size: var(--fs-h3);
}

.section__subtitle--intro,
.section__name--about{
    font-family:var(--ff-primary);
    background-color: #203239;
    color: var(--clr-light);
    padding: 5px;
    margin-bottom: 1%;
}
.section__subtitle--intro{
    /* justify-content: center; */
    font-size: 33px;
    padding: 5px 15%;
}

.intro{
    position: relative;
}

@media only screen and (min-width: 700px){
    .intro{
        display: grid;
        width: min-content;
        margin: 0% auto;
        grid-column-gap: 1em;
        grid-template-areas:
        "img title"
        "img subtitle";

        grid-template-columns: min-content max-content;
    }

    .myface{
        grid-area: img;
        min-width: 320px;
        position: relative;
        z-index: 2;
        box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
    }

    .section__subtitle--intro{
        align-self: flex-start;
        grid-column: -1 / 1;
        grid-row: 2;
        text-align: right;
        position: relative;
        left: -2em;
        width: calc(100% + 1.5em);
    }
}

.my-skills-intro{
    text-align: center;
    text-decoration: underline;
    color: var(--clr-accent);
}

.my-skills{
    background-color: var(--clr-dark);
}

.skills-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-gap: 50px;
}

@media only screen and (max-width:800px){
    .skills-container{
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
}
.skills-subtitle{
    color: var(--clr-accent);
}
.my-redux{
    width: 5%;
    display: block;
    padding: 5px;
    margin-left: 40%;
}

.skills-names{
    /* display: flex; */
    border: 1px solid black;
    margin: 5% 0%;
    border-radius: 8px;
    font-family: var(--ff-primary);
    font-weight: bold;
    text-align: center;
    font-size: 25px;
    background-color: var(--clr-accent);
}

.skills-names:hover{
    cursor: pointer;
    transition: 0.5s;
    transform:scale(1.02);
}

.skills-names1{
    display: flex;
    border: 1px solid black;
    margin: 5% 0%;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    font-family: var(--ff-primary);
    font-size: 25px;
    background-color: var(--clr-accent);
}

.skills-names1:hover{
    cursor: pointer;
    transition: 0.5s;
    transform:scale(1.02);
}

.fa-brands{
    color: #141E27;
}

.about-me{
    background-color:dimgrey;
    background-image: url(img/1657858.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    color: var(--clr-light);
    margin: 0% auto;
}

.section__title--about {
    text-decoration: underline;
}
.section__title--project{
    margin-bottom: 0%;
    text-decoration: underline;
}

.project_item{
    width: 100%;
    height: 500px;
    background-color: var(--clr-accent);
    margin: 4% auto;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.project_details{
    width: 100%;
    height: 65%;
    padding: 10px;
    color: var(--clr-light);
    background-color: var(--clr-dark);
    margin-top: 5%;
    
}
/* .project_details--first{
    position:relative;
    top: 70px;
    right: 100px;
}

.project_details--second{
    position:relative;
    top: 70px;
    right: 100px;
} */

.project_item >img{
    width: 60%;
    height: 100%;
    padding: 12px;
}

.project_btn{
    font-size: 20px;
    background-color: var(--clr-accent);
    font-family:var(--ff-secondry);
    font-weight: bold;
    width: 20%;
    padding: 12px;
    cursor: pointer;
}

.project_btn:hover{
    transition: 0.5s;
    transform:scale(1.05);
    background-color: #EEEDDE;
}

@media only screen and(min-width: 800px) {
    
    .project_item{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
        "img"
        "details";
        
    }
    .my_project{
        grid-area: img;
    }
    .project_details{
        grid-area: details;
    }
}

.final{
    width: 100%;
    height: 400px;
    background-color: var(--clr-dark);
    color: var(--clr-accent);
    text-align: center;
}
.final > h2{
    text-decoration: underline;
    padding-top: 90px;
    padding-bottom: 20px;
}
.final > h3{
    font-size: 30px;
}
.footer-social{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.footer-social > a{
    text-decoration: none;
    margin: 2%;
    font-size: 20px;
    font-weight: bold;
    color: #E0DDAA;
}

#new-brands{
    color: var(--clr-accent);
}