@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


header {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

h1 {
    margin: 0;
}

section {
    padding: 20px;
    margin: 20px;
    background: white;
    border-radius: 8px;
}

h2 {
    color: #333;
}

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.design-gallery, .tasks-gallery {
    display: flex;
    flex-direction: column; /* Align images vertically */
    justify-content: center; /* Center the images vertically (if needed) */
    align-items: center; /* Center the images horizontally */
    gap: 20px; /* Add some space between images */
    text-align: center; /* Center any text or captions beneath images */
}

img {
    max-width: 100%; /* Ensure images do not overflow */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Adds rounded corners to the images */
}
#main {
	margin: auto;
	display: inline;
}
#app-design {
	display: grid;
}

