* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: linear-gradient(to right, #5bb3bb, #cd3cb7);
    color:  white;
    padding: 40px 0 ;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
} 

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.about-section,
.projects-section,
.skills-section,
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.about-section h2,
.projects-section h2,
.skills-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #a070d4;
}

.about-section p,
.projects-section p,
.skills-section ul {
    font-size: 1.1rem;
}

.project-card {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.skills-section ul {
    list-style: none;
}

.skills-section ul li {
    display: inline-block;
    margin: 10px;
    font-size: 1.2rem;
    background-color: rgba(128, 128, 128, 0.58);
    color: white;
    padding: 5px 15px ;
    border-radius: 20px;
}

.contact-section a {
    color: #2575fc;
    text-decoration: none;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}