@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Satisfy&display=swap');

*{
    margin: 0;
    padding: 0;
}
h2, h3{
    font-family: "merriweather sans", serif;
}
h2{
    font-size: 50px;
    text-align: center;
}
h2 span{
    color: #edc6b8;
}
p{
    font-family: "poppins", sans-serif;
}
hr {
    width: 5%;
    margin: 20px auto;
    border: none;
    border-bottom: 5px dotted #edc6b870;
}
body{
    background: linear-gradient(#A02334, #d73e18);
    /* margin: 20px 50px; */
    color: #fff;
    
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
header #logo{
    font-size: 50px;
    font-weight: 900;
}
header #logo span{
    color: #edc6b8;
}
nav ul{
    display: flex;
    list-style: none;
}

nav ul li{
    margin-right: 30px;
    font-size: 25px;
}
nav ul li a{
    text-decoration: none;
    color: #edc6b8;
}
nav ul li a:hover{
    color: #fff;
    text-decoration: overline 1px double #d73e18;
}

#home{
    text-align: center;
}
#home .image{
    width: 400px;
    height: 400px;
    margin: 30px auto;
}
#home .image img{
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 10px solid #edc6b8;
}
#home h2{
    font-family: "satisfy", cursive;
    font-size: 40px;
}
#about{
    text-align: center;
}
#about p{
    width: 50%;
    margin: 30px auto;
    line-height: 2;
    padding: 0 30px;
}
.skills .skills-container .skill-item{
    margin: 50px auto;
    width: 50%;
    text-align: left;
}
.skills .skills-container .skill-item .code{
    width: 25%;
    border-radius: 50%;
    border: 5px solid #edc6b8;
    margin-right: 30px;
    float: left;
}
.skills .skills-container .skill-item .burger{
    width: 25%;
    border-radius: 50%;
    border: 5px solid #edc6b8;
    margin-left: 30px;
    float: right;
}
.skills .skills-container .skill-item h3{
    font-size: 25px;
    color: #edc6b8;
}
.skills .skills-container .skill-item p{
    font-size: 18px;
    line-height: 2;
}
#projects{
    padding: 20px 50px;
}
#projects .project-container{
    display: flex;
    justify-content: space-between;
}
#projects .project-container .project-item{
    background-color: #edc6b8;
    margin: 30px;
    padding: 50px;
    border-radius: 20px;
    color: #333;  
}
#projects .project-container .project-item h3{
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 20px;
}
#projects .project-container .project-item h3 i{
    margin-right: 20px;
    font-size: 40px;
    color: #A02334;
}
#projects .project-container .project-item h3 span{
    margin-right: 10px;
    font-size: 40px;
    color: #A02334;
}
#projects .project-container .project-item p{
    font-size: 20px;
    line-height: 2;
    margin-bottom: 30px;
    
}
#projects .project-container .project-item button, #projects .project-container .project-item .link{
    padding: 15px 30px;
    background-color: #A02334;
    color: #fff;
    border-radius: 20px;
    outline: none;
    border: none;
    font-family: "poppins";
    font-size: 20px;
    cursor: pointer;
}
#projects .project-container .project-item button{
    padding: 20px 40px;
}
#projects .project-container .project-item .link{
    display: inline-block;
}
#projects .project-container .project-item .link a{
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
#projects .project-container .project-item button:hover, #projects .project-container .project-item .link:hover{
    background-color: #d73e18;
    transform: scale(1.2);
}
#contact{
    text-align: center;
}
#contact p {
    font-size: 20px;
    margin-bottom: 20px;
}
#contact p i{
    font-size: 30px;
    margin-right: 20px;
}
#contact .contact-info{
    width: 40%;
    text-align: left;
    margin: 20px auto;
}
#contact .contact-info a{
    text-decoration: none;
    color: #fff;
}
#contact .contact-info a:hover{
    color: #A02334;
}
footer{
    background-color: #A02334;
    text-align: center;
    top: 5;
    width: 100%;
}
footer .social-media{
    margin: 50px auto;
    padding-top: 50px;
}
footer.social-media a{
    transition: color 0.3s ease-in-out;
}
footer .social-media a i{
    margin-right: 20px;
    font-size: 35px;
    color: #fff;
}
footer .social-media a i:hover{
    color: #d73e18;
}
footer .copyright{
    color: #ddd;
    border-top: 1px solid #aaa;
    font-size: 13px;
}
footer .designer{
    color: #bbb;
    margin-top: 10px;
    font-size: 10px;
}
footer .designer a{
    color: #edc6b8;
}
footer .designer a:hover{
    color: #d73e18;
}
#logo{
    text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}

