body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

main {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

.project {
    margin: 2rem;
    text-align: center;
}

.project img {
    max-width: 100%; /* Make sure the image doesn't exceed its container */
    height: auto; /* Maintain the image's aspect ratio */
}

.project h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.project p {
    margin-top: 0.5rem;
    font-size: 1rem;
}