body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden; /* Preprečuje drsenje strani levo-desno */
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.header-text h1 {
    font-size: 2.5rem; /* Rahlo manjša velikost za desktop */
    color: #66009a;
    margin-bottom: 0.5rem;
}

.header-text p {
    font-size: 1.25rem; /* Rahlo manjša velikost za desktop */
    color: #666;
}

.hero {
    margin-bottom: 1rem;
}

.hero-image {
    max-width: 100%; /* Poskrbi, da slika ne presega širine zaslona */
    height: auto;
}

.call-to-action {
    margin-bottom: 1rem;
}

.visit-w3b-btn {
    background-color: #66009a;
    color: white;
    padding: 0.8rem 1.6rem; /* Manjše oblazinjenje */
    font-size: 1rem; /* Velikost fonta */
    transition: background-color 0.3s;
    text-decoration: none;
    border: none; /* Odstranitev morebitne obrobe */
    /* border-radius: 5px;  To vrstico odstranimo ali komentiramo */
}

.visit-w3b-btn:hover {
    background-color: #4d0074;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
    font-size: 0.8rem; /* Rahlo manjša velikost fonta */
}

@media (max-width: 768px) {
    .header {
        margin-bottom: 0.5rem;
    }

    .header-text h1 {
        font-size: 2rem; /* Manjša velikost za naslov na mobilnih napravah */
    }

    .header-text p {
        font-size: 1rem; /* Manjša velikost za slogan na mobilnih napravah */
    }

    .visit-w3b-btn {
        padding: 0.6rem 1.2rem; /* Manjše oblazinjenje na mobilnih napravah */
        font-size: 0.9rem; /* Manjša velikost fonta na mobilnih napravah */
    }
    .footer p {
        padding: 1rem 2rem; /* Povečano oblazinjenje za besedilo v nogi */
    }

}