body {
   font-family: 'Times New Roman', Times, serif;
    background-color: #f0e1ca;
    margin: 0;
    padding: 0;
    color: #2b1010;
}

header {
    background-color: #b59367;
    padding: 2rem;
    text-align: center;
}

h1 {
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    margin: 0;
}





nav {
    background-color: #744521;
    padding: 0.8rem 2rem;
    text-align: center;
}

nav a {
    color: #f5e9d6;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 1rem;
}

nav a:hover {
    color: #0d0001;
}



h2 {
    color: #0c0b0c;
    text-transform: capitalize;
    border-bottom: 2px solid #b59367;
    padding-bottom: 0.3rem;
}

section {
    background-color: #e6c8a1;
    border: 1px solid #f2f2f2;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
     width: 100%;              
    box-sizing: border-box;
}

main {
    width: 90vw;
    max-width: 900px;
    margin: 2rem auto;
}





p {
    font-size: 1rem;
    line-height: 1.8;
    color: #111002;
}

a {
    color: #7a4f2e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 1.8rem;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
    padding-left: 1.8rem;
}

dl dt {
    font-weight: bold;
    color: #281d14;
}

dl dd {
    margin-left: 1.8rem;
    color: #292525;
}



.highlight {
    background-color: #eddabd;
    border-left: 4px solid #825c2a;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-style: italic;
    color: #5a3e28;
}


#intro {
    border-left: 5px solid #040302;
    background-color: #fdf6ee;
}

#about {
    border-left: 5px solid #7e6049;
}

footer {
    background-color: #b59367;
    color: #f5e9d6;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.project-img {
    width: 100%;
    max-width: 400px;   
    max-height: 300px;   
    object-fit: contain; 
    height: auto;
    border-radius: 8px;
    border: 2px solid #c9a87c;
    display: block;
    margin: 1rem auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

input, textarea {
    padding: 0.5rem;
    border: 1px solid #c9a87c;
    border-radius: 4px;
    width: 100%;
}