/* Profile photo styling */
.profile-photo {
    width: 150px; /* Adjust the size as needed */
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    margin-bottom: 15px;
}

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

/* Set up basic font and color scheme */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f9;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #003366; /* Navy blue for a professional look */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.4em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Main content styling */
main {
    width: 85%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

/* Section titles */
section h2 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* Section content styling */
#about p, #projects ul, #skills p {
    margin: 12px 0;
    font-size: 1.05em;
    color: #555;
}

#projects ul {
    list-style-type: circle;
    padding-left: 20px;
}

/* Contact Section styling */
#contact p {
    margin: 8px 0;
}

#contact a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Add spacing between sections */
section {
    margin-bottom: 25px;
}

/* Link styling */
a {
    color: #003366;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    main {
        width: 90%;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section h2 {
        font-size: 1.5em;
    }
}

