body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #2c5e2e;
    color: white;
    padding: 1em 0;
    text-align: center;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 20px;
}

input[type="file"] {
    display: block;
    margin-bottom: 10px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #45a049;
}

#imagePreview {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    margin-top: 10px;
}

#results h2, #results h3 {
    color: #2c5e2e;
}

footer {
    text-align: center;
    padding: 2px 0;
    background-color: #111;
    color: white;
    font-size: 0.5em;
    margin-top: auto;
}

.socialIcons{
    display: flex; 
    justify-content:center
}
.socialIcons a{
    text-decoration: none;
    padding:6px;
    background-color: white;
    margin: 1px 10px;
    border-radius:50%;
    
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity:0.9;
}

/*hover effects on social media Icons*/
.socialIcons a:hover{
    background-color:black;
    transition:0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition:0.5s;
}

.footerBottom{
    background-color:#111;
    padding: 2px;
    text-align: center;
    
}
.designer{
        opacity:0.7;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:9;
    margin: 0px 7px;
}

