body {
    font-family: sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.floppy-button {
    width: 100px; /* Adjust size as needed */
    cursor: pointer; /* Makes it clear the image is clickable */
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.floppy-button:hover {
    transform: scale(1.1); /* Simple hover effect */
}

#projectContainer {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 200px;
    text-align: left;
}
