*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}

a:link { 
    text-decoration: none; 
  } 
  a:visited { 
    text-decoration: none; 
  } 
  a:hover { 
    text-decoration: none; 
  } 
  a:active { 
    text-decoration: none; 
  }

body{
    background-color: #0E0E0E;
    color:beige; 
    font-family: 'Inter', sans-serif;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
}

section{
    display: block;
}

.row-left{
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    padding: 10vh 0vh 3vh 0vh;

}

.row-left img{
    width: 160px;
    height: auto;
}

.row-right{
    margin:20px;
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row-right h1{
  
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
    color: #FF6500;
    line-height: 90%;
}

.name{
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.desc{
    color: #b4b4b4;
    padding: 10px 0 30px 0;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 3%;
    line-height: 150%;
    text-align: center;
}

.row-right button{
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    background-color: #FF6500;
    color: white;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    transition: 0,5s ease;
}

.row-right button:hover{
    box-shadow: 0 0 8px orangered;
}

.divider{
    border-bottom: 2px solid #333;
    width: 80%;
    margin: 0 auto 30px auto;
}

.container-body{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;


}

.project{
    background-color: #FF6500;
    margin:20px;
    padding: 20px;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.project:hover{
    box-shadow: 0 0 8px orangered;
}

.project img{
    width: 4em;
    border-radius: 8px;
    margin-right: 10px;
}

.project h2{
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.project p{
    font-size: 14px;
    color: #FFD1B2;
    max-width: 300px;
}

.footer{
    font-size: 12px;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-style: italic;
    color: #7e7e7e;
}

/* ini untuk tampilan desktop */
@media (min-width: 768px){

    .container{
        display: flex;
        max-width: 1200px;
        margin:0 auto;
        align-items: center;
        justify-content: center;
    }

   
    .container section{ 
        display: flex;
        flex-direction: row-reverse;
    }

/* bagian header desktop */
    .row-left{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 90px 0;
       
    }
    .row-left img{
        width: 300px;
        height: auto;
    }
    
    .row-right{
        margin-left: 90px;
        flex:1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }
    
    .row-right h1{
        text-align: left;
        margin-bottom: 20px;
        font-size: 56px;
    }
    
    .name{
        font-size: 20px;
        font-weight: 700;
    }
    
    .desc{
        color: #b4b4b4;
        padding: 10px 0 30px 0;
        font-size: 14px;
        font-style: italic;
        letter-spacing: 3%;
        line-height: 150%;
        text-align: left;
    }
    
    .row-right button{
        font-size: 16px;
        font-weight: 700;
        padding: 17px 38px;
       
    }


/* tampilan desktop bagian body */
    .container-body{
        max-width: 1200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .container-body section{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        
    }

    .project{
    border-radius: 12px;
    height: 110px;
    }

}
