/* Reset some default styles */
body,
h1,
h2,
p {
    margin: 10px;
    padding: 2px;
}

/* Style the header */
header {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #800000;
    background-color: #f5f5f5;
    /* Your desired color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Style the navigation */
nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    background-color: darkorchid;
    padding: 10px 0;
}

nav li {
    margin: 0 24px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 20px;
}

.imageandaboutmecontainer {
    display: flex;
    flex-wrap: wrap;
    /* Wrap to a new line on smaller screens */
    justify-content: space-between;
    background-color: mintcream;

    /* Space the columns apart */
}

/* Style the right column (Image) */
.portfolio-image {
    flex: 1;
    /* Take up 50% of the container width */
    padding: 40px;
    /* Add some spacing around the content */
    width: 500px;
    /* Adjust the width as needed */
    height: auto;
    /* Maintain aspect ratio */
    margin: 30px auto;
    /* Center the image with spacing */
    border: 2px solid purple;
    /* Add a border for style */
    border-radius: 40px;
    /* Rounded corners */
    box-shadow: 0 0 5px orange;

}

.portfolio-image:hover {
    border: 2px solid darkseagreen;
    /* Change border color on hover */
    transform: scale(1.1);
    /* Zoom in slightly on hover */
    background-color: #dddfda;

}


.about-me {
    flex: 1;
    /* Take up 50% of the container width */
    padding: 40px;
    /* Add some spacing around the content */

}

.about-me p {
    font-size: 20px;
    /* Font size for paragraphs */
    line-height: 1.6;
    /* Line height for improved readability */
    margin-bottom: 15px;
    /* Spacing between paragraphs */
    color: #333;
    /* Text color */

}

.educationandskillscontainer {
    display: flex;
    flex-wrap: wrap;
    /* Wrap to a new line on smaller screens */
    justify-content: space-between;
    padding: 10px;
    background-color: #F0F0F0;

    
}


/* Style the sections */
section {
    padding: 20px;
}

.education {
    flex: 1;
    /* Take up 50% of the container width */
    padding: 40px;
    /* Add some spacing around the content */
}

.skills {
    flex: 1;
    /* Take up 50% of the container width */
    padding: 40px;
    /* Add some spacing around the content */
    font-size: 20px;
}



/* Style for each education item */
.education-item {
    margin-bottom: 4px;
    border-left: 3px solid purple;
    /* Add a colored border for each item */
    padding-left: 10px;
}

.education-item h3 {
    color: tomato;
}

.education-date {
    font-style: italic;
}

/* Style for the Work Experience section */
#work-experience {
    padding: 20px;
}

/* Style for each work entry */
.work-entry {
    margin-bottom: 20px;
}

.work-entry h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.company {
    color: #333;
}

.date {
    font-style: italic;
}

.responsibilities {
    margin-top: 10px;
}

.responsibilities li {
    list-style-type: disc;
}

/* Style the project boxes */
.project {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

/* Basic styling for the contact section */
.contact p {
    font-size: 17px;
    /* Font size for the paragraph */
    color: #4CAF50;
    /* Paragraph text color */
    margin-bottom: 20px;
    /* Spacing below the paragraph */
}


.contact {
    background-color: #faf3e0;
    padding: 40px;
    text-align: center;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    /* Header background color */
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}



.contact-list {
    list-style-type: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-list a {
    text-decoration: none;
    color: #800020;
}

.contact-list a:hover {
    text-decoration: underline;
}

.social-logo {
    width: 60px;
    height: 60px;
    margin: 0 15px;
}

/* Style the footer */
footer {
    font-size: 15px;
    background-color: #333;
    /* Background color for the footer */
    color: #fff;
    /* Text color for the footer content */
    padding: 20px 0;
    /* Spacing within the footer */
    text-align: center;
}