@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --light: #eaecee;
    --color-text: #3c3e41;
    --box-shadow:
        5px 5px 15px #c1c8d3,
        -5px -5px 15px #ffffff;
    --gradient-bg: linear-gradient(-45deg, #D000F7, #24BAE3);
}

a {
    color: #3c3e41;
    text-decoration: none;
}

body {
    margin: 0;
    background-color: var(--light);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

header {
    position: fixed;
    top: 0;
    width: calc(100% - 20px);
    padding: 10px;
    border-bottom: 1px solid #dce1e4;
    display: grid;
    grid-template-columns: 30% 70%;
    background-color: var(--light);
    z-index: 1;
}

header .logo img {
    height: 50px;
}

header ul {
    margin: 0;
    list-style: none;
    display: flex;
    height: 100%;
    justify-content: end;
    align-items: center;
}

header ul li {
    padding: 0 30px;
}

header .nav li a:hover {
    color: #D000F7;
    
}

.container {
    width: 1200px;
    max-width: 90%;
    margin: auto;
}

.banner {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 60% 40%;
    border-bottom: 1px solid #dce1e4;
    padding-bottom: 50px;
}

.banner .content {
    text-align: justify;
    padding-right: 50px;
}

.banner .content h1 {
    font-size: 4.5em;
    margin: 0;
}

.gradientText {
    display: inline-block;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.job {
    display: inline-block;
}

.job::before {
    content: attr(data-job1);
    overflow: hidden;
    display: inline-flex;
    animation: effectText 1s linear infinite alternate,
        changeText 4s linear infinite;
}

@keyframes effectText {
    from {
        max-width: 0;
    }

    to {
        max-width: 500px;
    }
}

@keyframes changeText {
    from {
        content: attr(data-job1);
    }

    to {
        content: attr(data-job2);
    }
}

.find {
    margin-top: 50px;
}

.find ul {
    padding: 0;
    list-style: none;
    display: flex;
}

.find ul li {
    width: 50px;
    height: 50px;
    box-shadow: var(--box-shadow);
    margin: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

.find ul li:hover {
    color: #fff;
    background-image: var(--gradient-bg);
}

.banner .avatar {
    position: relative;
    height: max-content;
    text-align: center;
}

.banner .avatar::before {
    position: absolute;
    width: 90%;
    height: 80%;
    content: '';
    z-index: -1;
    bottom: 0;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.banner img {
    width: 90%;
}

header .navDiv,
header .nav label,
header input {
    display: none;
}

.title {
    text-align: center;
    padding-top: 100px;
}

.listSkill {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    border-bottom: 1px solid #dce1e4;
    padding-bottom: 50px;
}

.listSkill .evaluate {
    width: 100%;
    height: 20px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.listSkill .evaluate::before {
    position: absolute;
    height: 100%;
    width: var(--point);
    background-image: var(--gradient-bg);
    content: '';
    border-radius: 10px;
}

.listProject {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-bottom: 1px solid #dce1e4;
    padding-bottom: 50px;
}

.listProject .item {
    text-align: center;
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.listProject .item img {
    width: 90%;
    border-radius: 20px;
}

.listProject .item {
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: large;
}

.contact {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.contact li {
    width: 50px;
    height: 50px;
    margin: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 0.5s;
}

.contact li:hover {
    background-image: var(--gradient-bg);
    color: #fff;
}

/* Desktops and laptops ----------- */
@media screen and (min-width:1224px) {
    /* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (max-width:1024px) {

    /* Styles */
    header ul {}

    .banner {
        grid-template-columns: 40% 60%;
    }

    .banner .content h1 {
        font-size: 2em;
    }

    .listProject {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* mobile */

@media screen and (max-width: 767px) {
    .banner {
        grid-template-columns: 1fr;
    }

    .banner .content h1 {
        font-size: 1.2em;
    }

    .banner .avatar {
        grid-row-start: 1;
    }

    header .navDiv {
        display: flex;
        justify-content: end;
    }

    header label {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: red;
        box-shadow: var(--box-shadow);
        border-radius: 50%;
    }

    header .nav {
        position: fixed;
        background-color: #F0F3F5;
        z-index: 1;
        width: 70%;
        height: 100vh;
        left: 0;
        top: 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 70px);
        transform: translateX(-100%);
        transition: 0.5s;
    }

    input#menu:checked~.nav {
        transform: translateX(0%);
    }
    header .nav label {
        width: 50px;
        height: 50px;
        box-shadow: var(--box-shadow);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: red;
    }

    .banner .content {
        padding-right: 0px;
    }

    .listSkill {
        grid-template-columns: 1fr;
    }

    .listProject {
        grid-template-columns: 1fr;
    }

}