header {
    background: linear-gradient(135deg, #f39c12, #f1c40f, #e74c3c, #8e44ad, #2980b9);
    color: white;
    padding: 20px 0;
    text-align: center;
}


footer {
    background-color: linear-gradient(135deg, #f39c12, #f1c40f, #e74c3c, #8e44ad, #2980b9); 
    color: white;
    padding: 20px;
}

body {
    background-color: #f0f0f0bb; /* Ngjyrë gri shumë e hapur */
    font-family: Arial, sans-serif;
    color: #333; /* Ngjyrë gri e errët për tekstin */
    margin: 0;
    padding: 0;
}

#logo {
    width: 350px; 
    height: auto; 
    margin-right: 20px; 
}

header h1 {
    font-size: 2.5rem; 
    font-family: 'Arial', sans-serif; 
    margin: 0; 
}

@media (max-width: 768px) {
    #logo {
        width: 80px; 
    }

    header h1 {
        font-size: 1.8rem; 
    }
}


#bio {
    background-color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
}

#bio h2 {
    color: #333;
}

/* Seksioni i kontaktit */
#contact {
    background-color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
}

#contact h2 {
    color: #333;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-bottom: 5px;
    font-weight: bold;
}

#contact input, #contact textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#contact button:hover {
    background-color: #555;
}

/* Footer */
footer {
    
        background: linear-gradient(135deg, #f39c12, #f1c40f, #e74c3c, #8e44ad, #2980b9); /* Gradiente me shumë ngjyra */
        color: white;
        padding: 40px 0;
        text-align: center;
        font-size: 16px;
    }
    
    footer a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }
    
    footer a:hover {
        text-decoration: underline;
        color: #f39c12; 
    }

