body {
	background-color: #F5F5F5;
	font-family: Arial, Helvetica, sans-serif;
}
h1 {
	color: #2C3E50;
	text-align: center;
	font-style: bold
}
h2 
{
	color:#2C3E50;
	font-style: bold;
	padding-left: 30px;
}

h4 
{
	color:#2C3E50;
	font-style: bold;
	padding-left: 30px;
	text-align:center;
	font-size: 25px;
}
heading
{
	color:#2C3E50;

}
p{
	font-size: 20px;
	font-family: 'IBM plex sans', sans-serif;
	color:#333333;
	line-height: 1.5;
}
ul {
	font-size: 20px;
	font-family: 'IBM plex sans', sans-serif;
	color:#333333;
	line-height: 1.5;
  }
h3{
	color:#333333;
	font-size: 20px;
	text-align: center;
} 

/* Styling for images on home page */
.specific-line {
    padding-left:30px; 
}

.image-container{
	width:100%;
	text-align: center;
}

.current-positions{
	display: block; /* Centering-related styling */
    margin: 0 auto; /* Center the images */
    max-width: 40%; /* Set the desired width */
    height: auto; /* Set the desired height */
    border-radius: 10px; /* Optional: Add rounded corners */
}
/* I did use chat gpt for the display blokc and margin 0 but only after I tried everything I knew to center the image
becuase whenever I tried it just was center to the left side of the website. I hope this was okay.*/

.current-positionsrectangle {
    display: block; 
	margin: 0 auto;
    width: 30%; 
    height: auto; 
}
.current-positionsresume {
    display: block; 
	margin: 0 auto;
    width: 45%; 
    height: auto; 
}
.projects { 
	display:flex; 
	flex-wrap:wrap; 
} 

.project {
	width: 30%;
	margin: 10px;
	padding: 15px 10px;
	background: #ECF0F1; /* pick a color */
	border-radius: 15px;
	border: 4px solid #2C3E50; /* Midnight Blue */
}

.section {
	width: 98%;
	margin: 20px auto;
	padding: 10px 10px;
	background: #ECF0F1; /* pick a color */
	border-radius: 10px;
	border: 4px solid #2C3E50; /* Midnight Blue */
}

a { /* change the appearance of ALL links */
	text-decoration: none;
	color: purple;
}
.project p { /* change the appearance of paragraph tags inside .project divs */
	text-align: center;
	margin: 15px;
}

.about{
	display:flex;
	flex-wrap:wrap;
	margin-right: 100px;
	margin-left: 75px;
	justify-content: center;
}
.about p {
	width:80%;
	/*text-align: center; */
	margin: auto;
	line-height: 125%;
}
.about img {
	width: 180px;
	height: 225px;
	object-fit: cover;
	border-radius: 25%;
	border: 2px solid #2C3E50;
}

.contact {
    display: flex; 
    justify-content: space-evenly; 
    align-items: center; 
    margin: 20px auto; 
    padding: 10px 0; 
    width: 80%; 
}

.contact ul {
    display: flex; 
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    gap: 20px; 
}

.contact li {
    margin: 0 30px; 
    white-space: nowrap; 
    font-size: 18px; 
}

.contact a {
    text-decoration: none; 
    color: purple; 
    font-weight: bold; 
}