html{
  
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    font-family:'Source Sans Pro', sans-serif; ;
}


body{
    background-color:#4f4d59;
    color: white;
}

h1{
    margin-top: 7%;
    text-align: center;
    font-size: 70px;
}

.text-decoration{
    text-decoration: none;
}

a{
    color:inherit;
    text-decoration: none;
}

 a:hover{
     color: inherit;
 }

  /*sspacing between sections */


.spacing{
    margin-bottom: 10%;
}


          /* font styling */

.largefont{
    font-size: 130%;
}

.smallfont{

    font-size: 70%;
}

.lighter{
    font-weight: 300;
}


.light{
    font-weight: 500;
}

.bold{
    font-weight: 700;
}


.bolder{
    font-weight: 900;
}

.textcenter{
    text-align: center;
}

.background-color{
    background-color:#4f4d59;
}

.dark-background-color{
    background-color: #413f49;
}


.border-shadow{
    box-shadow: 5px 5px 13px -1px rgb(0 0 0 / 20%);
}

         /* font styling */


       

     /* hero SECTION BEGINS*/


.home-hero-text{
 color: #f87537;
}

.home-hero-text-container{
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: center;
    flex: 1 1;
    height: 100%;
}

.home-hero-icon-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}


.home-hero-view-resume{
    display: flex;
    color:#4f4d59;
    font-weight: 600;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 150px;
    height:40px;
    border-radius: 10px;
    background: linear-gradient(180deg,#f87537,#fba81f);
    transition: transform .2s ease;
    
}


.home-hero-view-resume:hover{
    transform: scale(1.1);
    color: #413f49;
 
}


/* hero SECTION ENDS*/





/* BADGES SECTION BEGINS*/

.home-badges-container{
    display: flex;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;

}

.home-badges{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: 15%;
    margin-right: 15%;

    

}





@media screen and (max-width: 1024px) {
    .home-badges{
        display: flex;
        flex-direction: column;
        width: 100%;
        

    }
}


@media screen and (min-width: 1024px) {
    .home-badges{
       
        width: 100%;
        height: 400px;
    }
}




.home-badge{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    height: 100%;
    align-items: center;
    background: #4f4d59;
    border: 0;
    box-shadow: 5px 5px 13px -1px rgb(0 0 0 / 20%);
    transition: transform .2s ease;
    font-size: 100%;
    border-radius: 10px;
    
   
}

@media screen and (max-width: 1024px) {
    .home-badge{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 15px;
        height: 200px;

    }
}



.home-badge:hover{
    transform: scale(1.1);
}

.home-badge img{
    width: 75px;
    
}

.home-badge h3{
    text-align: center;
    color:#f87537;
    font-weight: bold;
}


.home-badge p{
    text-align: center;
    line-height: 25px;
    margin: 5px 40px;
    
    font-weight: 300;
    
}


@media screen and (max-width: 1024px) {
    .home-badge p{
       font-size: 100%;
       width: 100%;
        
    }
}






.box{
    color:blue;
    margin-right: 1%;
    background-color: blue;
    width: 16px;
    
}





#projects{
    margin-left: 15%;
    margin-right: 15%;
    font-size: 2em;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: solid 3px blue;
}







.portfolio-item{
    background-color: solid 1px red;
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-direction:row;
    overflow: auto;
    margin-bottom: 40px;
    box-shadow: 5px 5px 13px -1px rgb(0 0 0 / 20%);
    
    
}



@media screen and (max-width:1024px) {

    .portfolio-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    
    }
}









.project-text-container{
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    background-color: #696778;
    
    border-radius: 0 10px 10px 0;
    
    width: 60%;
}







@media screen and (max-width:1024px){
    .project-text-container{
        width: 100%;
        padding: 30px;
        
    }
}





.project-text{
 margin-left: 5%;
 margin-right: 5%;

}



@media screen and (max-width:1024px){
    .project-text{
        text-align: center;
        margin-top: 7%;
    }
}



.project-links{
    display: flex;
    justify-content: start;
}



@media screen and (max-width:1024px){
    .project-links{
        justify-content: space-between;
    }
}







.project-links-button {
   background-color: #f87537;
   border-radius: 5px;
   transition: all .2s ease;
   margin-left:2%;
   width: 20%;
   padding:1%;
}




@media screen and (max-width:1024px){
    .project-links-button{
       width: 50%;
    }
}







.project-links-button:hover{
    transform: scale(1.2);
}


.project-links-button-right{
    background-color: white;
    color: #f87537;
}

.project-links-button a{
    justify-content: center;
}





.portfolio-img{
 
   width: 50%;
  
   
}


@media screen and (max-width:1024px){
    .portfolio-img{
        width: 100%;
        
    }
}



img{
   width:100%;
    
}


.portfolio-item a{
    display: flex;
    width: 100%;
    height: 100%;
}






.home-hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-contact{
    display: flex;
    justify-content: center;
    align-items: center;
}



.home-contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    border-radius: 2px;
    border-radius: 15px;
    box-shadow: 5px 5px 13px -1px rgb(0 0 0 / 20%);
    background-color: #413f49;
    
}

@media screen and (max-width:1024px) {
    .home-contact-form{
        width: 100%;
    }
    
}




.home-contact-form input{
    background-color:#bfbfbf ;
    border-radius: 5px;
    border: 0;
    margin: 10px;
    padding: 10px;
    width: 80%;
    height: 50px;
    font-size: 20px;

}

.home-contact-form textarea{
    background-color:#bfbfbf ;
    border-radius: 5px;
    border: 0;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 80%;
    height: 160px;
    font-size: 20px;
}


.home-contact-btn{
    border-radius: 5px;
    border: 0px;
    width: 30%;
    height: 40px;
    transition: transform .2s ease;
    color: #FDFF;
    background-color: #f87537;
    margin-bottom: 10px;
}

.home-contact-btn:hover{
    transform: scale(1.1);
}


footer{
    margin-top: 2%;
    height:50px ;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c2a31;
   
}

footer p{
    text-align: center;
    width:80% ;
    font-size: 15px;

}

.footer-btn{
   border-radius: 60%;
   border: 0px;
    height: 80%;
   transition: transform .2s ease;

   background-color: #1b1a1f;
   ;
 
  
    
}

.footer-btn{
    width: 50px;
}


