body {
margin: 0;
font-family: Roboto, sans-serif;
line-height: 1.6;
color: black;
background-color: #E6E8E6;
}

#header {
background-color: #262626;
color: white;
padding: 0;
margin: 0;
position: fixed;
width: 100%;
top: 0;
display: flex;
justify-content: space-between;
align-items: center;

}

#header-img {
display:flex;
flex-wrap: wrap;
max-width: 80px;
height: auto;
display: block;
margin: 0;
}

#navbar {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 15px;
right: 55px;
z-index: 1000;
padding: 10px 0;

}

#navbar ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 20px;
flex-direction: row;
justify-content: space-around;
}

.nav-link {
text-decoration: none;
color: white;
font-weight: bold;
}

.nav-link:hover {
display: block;
color: #E6E8E6;
text-decoration: none;
cursor: pointer;
font-size: 15px;
transition: font-wheight 0.3s ease-in-out;
transition: text-indent 0.3s ease-in-out;
}

#welcome-section{
background-color: #5448C8;
padding: 20px;
text-align: center;
margin-top: 80px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

#welcome-section > h1{
color: #EEF1EF;
text-align: center;
font-size: 5rem;
font-weight: 400;
margin: 0;
}

#whoiam > h3{
color: #EEF1EF;
font-size: 3rem;
font-weight: 300;
margin: 0;
}

#whoiam > h4, p{
color: #EEF1EF;
font-size: 1rem;
font-weight: 100;
margin: 0;

}

.highlightw{
color: red;
text-shadow:
1px 1px 0 black,
-1px 1px 0 black,
1px -1px 0 black,
-1px -1px 0 black;
}

#projects {
text-align: center;
padding: 20px;
display: flex;
flex: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
margin: 0 auto;
}

projects.project-tile > h1 {
display: flex;
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
gap: 20px;
margin: 40px auto;
overflow-x: auto;
padding: 10px;

}

.project {
flex: 1 1 calc(33.333% - 40px);
width: 300px;
align-items: center;
text-align: center;
justify-content: center;
background-color: #fff;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 10px;
}

.project img {
width: auto;
max-width: 80%;
height: auto;
border-radius: 8px;

}

.project a {
text-decoration: none;
font-weight: bold;
color: #262626;
}

.project a:hover {
color: #5448C8;
text-decoration: underline;
}

@media (max-width: 768px) {
.project-tile {
flex-direction: column;
align-items: center;
}
.project {
max-width: 100%;
margin: 0 auto;
margin-bottom: 10px;
}
}

footer {
background-color: #B27C66;
color: white;
text-align: center;
padding: 5px 0;
margin: 0;

}
