/* Stile per il tema scuro */
body {
    background-color: #303030;
    color: #fff;
}

/* Cambia il colore del link della navbar */
.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-item.active .nav-link {
    color: #006400;
}

/* Modifica il colore di sfondo della navbar per renderlo più scuro */
.navbar {
    background-color: #222; 
}


.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* Stile del testo del paragrafo */
#typing-effect {
    font-family: 'Courier New', Courier, monospace; 
    font-size: 2.2rem; 
    color: #fff; 
    text-align: center; 
    height: calc(100vh - 200px); 
    margin-top:8%;
}

@media (max-width: 992px) {
    #typing-effect {
        font-size: 1.6rem;
    }
}