/* GENERAL PAGE STYLE */

body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f4f4f4;
text-align:center;
}

/* HERO SECTION */

.hero{
background: linear-gradient(#87CEEB, #ffffff);
padding:80px 20px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero h2{
font-weight:normal;
color:#555;
}

/* PROFILE IMAGE */

.profile{
width:150px;
border-radius:50%;
margin-bottom:20px;
}

/* SECTIONS */

section{
background:white;
margin:20px;
padding:30px;
border-radius:10px;
}

h2{
color:#333;
margin-bottom:15px;
}

/* SKILLS */

.skills ul{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
padding:0;
}

.skills li{
list-style:none;
background:#f0f0f0;
padding:10px 20px;
border-radius:20px;
}

/* PROJECT CARD */

.project-card{
background:whitesmoke;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
max-width:400px;
margin:auto;
}

/* CONTACT SECTION */

.contact p{
font-size:18px;
}

/* FOOTER */

footer{
background:#333;
color:white;
padding:20px;
/*margin-top:20px;*/
}

footer a{
color:white;
margin:10px;
text-decoration:none;
font-weight:bold;
}

footer a:hover{
text-decoration:underline;
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){

.hero{
padding:50px 20px;
}

.hero h1{
font-size:36px;
}

section{
margin:10px;
}

}