/* Stilet bazė */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



/* Tė gjitha elementet janė tė shtrirė nė plotėsimin e ekranit */
body {
    background-color: #f4f7fb;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2CAF50;
    color: white;
    text-align: center;
    padding: 10px 10px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 2px;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Seksioni kryesor */
.content {
            background-image: url('image.png'); /* Emri i fotos */
            background-size: cover; /* Mbush ekranin */
            background-position: center; /* Qendėrson imazhin */
            background-repeat: no-repeat; /* Parandalon pėrsėritjen */
    padding: 200px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
}

.content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Butoni */
.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    text-align: center;
    padding: 2px;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
