*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}



.container{
    max-width:1180px;
    margin-inline: auto;
    padding-inline: 20px;
    overflow: hidden;
    
   
}

html{
    overflow-x: hidden;
}

.flex{
    display: flex;
}
body{
    background-color: #111;
    overflow-x: hidden;
}

/* NAV BAR */

.name{
    font-family: url("moranga.ttf");
}

.nav-items{
    justify-content: space-between;
    align-items: center;
    margin-block: -70px;
    margin-inline: 50px;
    position: fixed;
    width: 100%;
    height: auto;
    padding-right: 100px;
    z-index: 99;
}

.arrow{
    font-size: 30px;
    border-radius: 50%;
    border: 2px solid white;
    justify-content: center;
    align-items: center;
    display: flex;
    height :41.525px;
    width: 41.525px;
}

.get-my-resume-btn  a button{
    background-color: rgb(15, 200, 207);
    color: #fff;
    border-radius: 6px;
    width: 5rem;
    height: 3rem;
    cursor: pointer;
    box-shadow: 2px -2px 15px rgb(15, 200, 207);
}

/* image-section  */

.who-is {
   text-align: center;
   
   font-size: 7vw;
   margin-top: 100px;
}
.image-section{
    height: 80vh;
    margin-top: 40px;
    position: relative;
    
    
}
.image-section img{
    width: 100%;
    height: auto;
    
}




/* animated-name */
.animated-name{
    padding-block: 30vh;
    white-space: nowrap;
    gap: 20px;
    transform: translateX(-100%);
    
}

.animated-name h1{
    font-size: 8vw;
    text-align: center;

}

/* ABOUT ME */

.about-me{
    text-align: center;
    font-size: 2.3vw;
}

.more-about-me2{
   padding-block: 100px;
}

.about-me-btns{
    padding-block: 20px;
}

.about-me-btns a img{
    height: 15vh;
    
}

/* PAGE3 */

.page3{
    height: 100%;
    width: 100%;
    background-color: #222;
    padding: 60px;
    
}

.things h1{
    font-size: 7vw;
    white-space: nowrap;
}

.things h2{
    font-size: 5vw;
    margin-top: 10px;
}

.development{
    margin-top: 40px;
    display: inline-block;
}

.devh3{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 6px;
    width: 40%;
    height: 6vh;
}

.elem-div {
    width: 40vw;
    height: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-block: 30px;
}

.elem-div img{
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 6px;
    align-items: center;
}

/* PAGE4 */

.page4{
    height: 100%;
    width: 100%;
    background-color: #333;
    padding: 60px;
    
}

.projects-samples{
    
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin-block: 45px;
    border-radius: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.projects-samples img{
    max-width: 20vw;
    height: 20vh;
    margin: 30px;
    box-shadow: 0px 8px 40px black;
    
}

.projects-samples img:hover{
    transform: translateY(-4px);
}

.page4 a img{
    position: absolute;
    right: 5vw;
    width: 13vw;
}


/* PAGE5 */
.page5{
    height: 100%;
    width: 100%;
    background-color: #222;
    padding: 60px;
    
}




    


.artwork{
    height: fit-content;
    margin-top: 30px;
    position: relative;
    overflow: hidden;


}

.artwork a{
    height: 72px;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid white;
    text-decoration: none;
}



.button h4 , .button h5 , .button h6{
    font-size: 2vw;
}


.button{
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    
}

.button::after{
    content:"";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #d96161 ;
    z-index: -1;
    transition: 0.3s ease all;
    transform: scale(0,1);
    transform-origin: top left;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    
    
    
}



.button:hover::after{
    transform: scale(1,1);
    transform-origin: top left;
} 

/* PAGE6 */

.page6{
    height: 100%;
    width: 100%;
    background-color: #333;
    padding: 60px;

}

.page6 h1{
    font-size: 10vw;
}

.page6 h1 a{
    text-decoration: none;
}

.page6 h3{
    text-align: center;
    margin-top: 80px;
    font-size: 2vw;
}


