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

/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

header, section, footer {
    padding: 20px;
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button, .button {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover {
    background-color: #2980b9;
}

/* Header Styles */
.header {
    background: linear-gradient(to bottom right, #3498db, #2c3e50);
    color: white;
}

.header-content {
    padding: 50px 20px;
}

.navbar ul {
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
}

/* Section Styles */
.section {
    margin: 40px 0;
}

.section-content {
    margin: auto;
    width: 80%;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
}

/* Project Styles */
.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project {
    width: 45%;
    margin: 2.5%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
}

.project img {
    width: 100%;
    border-radius: 10px;
}

/* Social media buttons */
.footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.footer ul li {
    margin: 0 10px;
}

.footer ul li a {
    color: white;
    font-size: 24px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #3498db; /* Change this color as desired */
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
}

.footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.footer ul li {
    margin: 0 10px;
}

.footer ul li a {
    color: white;
    font-size: 20px;
}

