/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #FF6700;
    text-align: center;
    padding: 20px;
    color: #ffffff;
}

/* Logo */
#logo {
    margin-bottom: 10px;
}

#logo img {
    max-width: 150px;
    height: auto;
    /*border: 2px solid #ffffff;
    padding: 5px;
    background-color: #;*/
}

/* Navigation */
nav {
    background-color: #FF8F00;
    text-align: center;
    padding: 20px;
    height: auto;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding:15px 15px;
    margin: 0 5px;
    font-weight: bold;
}

a:hover {
    background-color: #ffb74d;
    font-size : 110%;
}

/* Main Content */
.container {
    padding: 40px;
    height: auto;
    background-color: #cccccc;
}

/* Footer */
footer {
    background-color: #FF6700;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0px;

}

/* Project Section */
.project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-item {
    width: 250%;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 30px;
}

.project-item img {
    position: center;
    max-width: auto;
    height: 300px;
    display: block;
    margin-bottom: 10px;

}

.project-item h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.project-item p {
    font-size: 0.95em;
    
}


ProjImg{
    height: 300px;
    width: 300px;
}


td {

    padding-left: 20px;
}