@import url(styles-animation.css);


html, body {
    padding: 0;
    color: black;
    font-family: "Hanuman", serif;
    font-style: normal;
}

.header { 
    font-size: 3em;   
    font-weight: 380;   
    margin: 0;      
 }

 .contact-me {
    color:purple;
    font-size: 0.5em;
    font-weight: 360;  
}
 
.social-icon-group {    
    font-size: 40px;
    color: white;   
    gap: 20px;  
    justify-content: center;
}


.social-icon { 
    background-color: black;
    color: white;
    padding: 10px 10px 10px 10px;    
    text-align: center;      
}

.social-icon:hover {
    background-color: purple;
    font-size: 80px;
}


footer { 
    margin-top: 60px;
    padding-left: 20px;
 }

.main {    
    gap: 20px;
}

.contact { 
    margin-top: 40px;
    padding-top: 60px;
    margin-left: 20px;
    margin-right: 20px; 
    
 }

 .hero-section { 
    margin-top: 40px;   
    padding-top: 60px;
    margin-left: 20px;
    margin-right: 20px; 
    padding-right: 20px;   
   
 }

 .hero-img {   
    width: 100%;
    height: 100%;   
    border: 1px solid gainsboro;
    z-index: 1;
    border-radius: 90px;
    border: 1px solid black;   
}

@media (max-width: 420px) {
    .header {
        font-size: 2em;
    }   
    .hero-img {       
        width: 100%;    
        height: 100%;     
    } 

    footer {
        text-align: left;
    }
}

@media (min-width: 421px) and (max-width: 1024px) {
    .hero-img {       
        width: 100%;       
        height: 100%;   
    }  

    footer {
        text-align: left;
    }
    .contact-me {
     
        font-size: 0.75em;
        
    }
    
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .header {
        font-size: 5em;
    }     
 .main {
    display: flex;
    flex-direction: row; 
    gap: 10px;
    
}
.hero-img {       
    width: 100%; 
    height: 100%;
        
}

footer {
    text-align: center;
}

.contact-me {
     font-size: 1em;
}
}

@media (min-width: 1401px)  {
    
    .header {
        font-size: 5em;
    }     
 .main {
    display: flex;
    flex-direction: row;
    gap: 10px;
   
    margin: 0;
    
}

.hero-img {       
    width: 90%; 
    height: 90%;        
}

footer {
    text-align: center;
}

.contact-me {
     font-size: 1em;
}
}






 





 

