@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800&family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --back-color: #202023;
    /* --back-color: #06070c; */
    --rect-color: #81e6d9;
    /* --text-color: white; */
    --text-color: #ededee;
    --pink-color: #ff63c3;
    --back-green-color: rgba(154, 230, 180, 0.16);
    --green-color: #9ae6b4;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Public Sans', sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--back-color);
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 750px) {
    .container {
        padding: 0 10px;
    }
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 10px 0;

    height: 50px;
    z-index: 6;
}



.blure {
    width: 100%;
    height: 50px;
    position: fixed;
    background-color: #202023d4;
    filter: brightness(0.8) blur(5px);
    left: 0;
    top: -15px;
    z-index: 2;
}

header .title {
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    color: var(--text-color)
}

header nav {
    width: 60%;
}


header ul {
    display: flex;

    list-style: none;
}


header ul li {

    margin: 0 10px;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    z-index: 20;

}

header ul li:hover {
    border-bottom: 1px solid var(--rect-color);
}

header .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

img {
    width: 100px;
}

/* Nav Phone */
.nav-phone {
    bottom: 20px;
    background-color: white;
    /* color: var(--back-color); */
    width: 80%;
    padding: 10px;
    margin-left: 5%;
    margin-right: 10%;
    border-radius: 25px;
    border: 1px solid var(--text-color);
    position: fixed;

}


@media (min-width: 750px) {
    .nav-phone {
        display: none;
    }
}

header ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;

}



header ul li i {
    font-size: 19px
}

header li a {
    text-decoration: none;
    margin-top: 3px;
    color: var(--text-color);

}

/* End Nav Phone */


/* About */
.about {
    width: 100%;
    min-height: 85vh;

}

.about .text-one {
    width: fit-content;
}

.about .text-one p:nth-child(1) {
    font-size: 18px;
}

.about .text-one p:nth-child(2) {
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
}

.about .box-img {
    display: flex;
    flex-direction: row-reverse;
    margin: 100px 0;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
}

@media (max-width : 650px) {
    .about .box-img {
        justify-content: center;

    }

    .about .box-img .img {
        margin-top: 10px;
    }
}

.about .box-img .img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-image: url("./media/myImage.jpg");
    background-size: cover;
    margin-bottom: 10px;
    border: 2px solid var(--text-color)
}

.about .box-img p {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-color)
}

.tag-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color)
}

.about .text {
    font-weight: 400;
    line-height: 28px;
    max-width: 800px;
    /* max-height: 356px; */
    /* overflow: hidden; */
    color: var(--text-color)
}


.about .social-media {
    margin-top: 35px;
    color: var(--text-color);
    margin-bottom: 50px;
}

.about .social-media p {
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid gray;
    width: fit-content;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.about .social-media ul {
    list-style: none;
}

.about .social-media ul li {
    margin: 5px 0;
}

.about .social-media ul li a {
    color: var(--rect-color);
    text-decoration: none;
}

/* End About */


/* Start Skills */
.br {
    width: 100%;
    color: var(--rect-color);
    height: 1px;
    background-color: var(--rect-color);
    margin-bottom: 20px;
}

.skills {
    min-height: 100vh;
}

.box-section {
    color: var(--back-color);
    background-color: var(--rect-color);
    padding: 5px 30px;
    width: fit-content;
    margin: 40px 0;
    border-radius: 5px;
}

.skills ul {
    text-decoration: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skills ul li {
    width: 100px;
    height: 90px;
    color: var(--text-color);
    /* background-color: var(--text-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 20px;


}

.skills ul li p {
    color: var(--text-color);
    font-size: 13px;
    margin-top: 5px;
}

/* @media (max-width : 550px) {
    .skills ul li {
        width: 100%;
    }
} */

.skills ul li img {
    margin-bottom: 5px;
    width: 90px;
    height: 50px;
}

/* End Skills */

/* Start Work */

.work {
    min-height: 100vh;
}

.work .projects {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

@media (max-width : 650px) {
    .work .projects {
        justify-content: center;
    }
}

.work .projects .project {
    max-width: 200px;
    cursor: pointer;
    margin: 10px 0;

}

.work .projects .project img:hover {
    transform: scale(1.1);
}

.work .projects .project img {
    width: 100%;
    height: 100px;
    border-radius: 20px;
}

.work .projects .project .info {
    color: var(--text-color)
}

.work .projects .project .info p:nth-child(1) {
    font-weight: 700;
    font-size: 18px;
    /* text-align: center; */
    margin: 5px 0;
}

.work .projects .project .info p:nth-child(2) {
    font-weight: lighter;
    font-size: 15px;
}

/* End Work */


/* Start Detail page */
.project-info {
    color: var(--text-color);
    margin-top: 100px;
}

.project-info .path {
    color: var(--pink-color);
    font-size: 17px;
    font-weight: normal;

}

.project-info .name-project {
    font-weight: 700;

}

.project-info .description {

    margin: 20px 0;
    font-size: 15px;
    font-weight: 300;
}

.project-info ul {
    list-style: none;

}

.project-info ul li {
    margin: 10px 0;
}

.project-info a {
    text-decoration: none;
    color: var(--pink-color)
}

.project-info .title {
    background-color: var(--back-green-color);
    color: var(--green-color);
    padding: 2px;
    margin-right: 5px;
    font-size: 13px;
}

.project-info #screen-shots {
    margin-top: 40px;
}

.project-info #screen-shots img {
    width: 100%;
    max-height: 400px;
    margin: 10px 0;
    border-radius: 10px
}

.project-info .notes {
    background-color: rgba(189, 29, 29, 0.493);
    padding: 8px;

    border-radius: 5px;
}

.project-info .notes span {
    color: rgba(248, 0, 0, 0.863);
    font-weight: 700;

}

.project-info .notes p {
    font-size: 13px;
    padding-top: 2px;
}

/*  End Detail page */