:root {
    --main-bg-color: #000000e6;
    --sec-bg-color: #008f39f1;
    --p-bg-color: #4e4e4e;
    --text-color: #061308;
    --wtext: #fff
}

::selection {
    background: black;
    color: green;
}

.container {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(5, 10, 5, 0.88), rgba(40, 90, 67, 0.514)), url(../images/tech.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 9rem;
    cursor: pointer;
}

ul {
    padding-bottom: 3rem;
}

.lista li {
    list-style: none;
    display: inline-block;
    margin: 0 .5rem;
    position: relative;
}

.lista a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
}

.lista li::before {
    content: " ";
    height: 3px;
    width: 0%;
    background: #008f39f1;
    position: absolute;
    left: 0;
    bottom: -12px;
    transition: 0.4s ease-out;
}

.lista li:hover::before {
    width: 100%;
}


footer {
    background: var(--sec-bg-color);
    height: 2%;
    text-align: start;
    width: 100%;
    padding: 2rem;
    font-size: 1.8rem;
    color: #000000;
}

footer h4 {
    width: 100;
    margin-top: 2rem;
    font-size: 2rem;
    text-align: start;
    font-weight: 500;
}

footer h4 a {
    font-size: 1.6rem;
}

.facebul {
    color: #000000;
    text-decoration: none;
}

.fab {
    color: #000000;
    padding-right: .5rem;
    padding-top: .5rem;
}

.fa-html5 {
    color: #f8885b;
}

.fa-css3-alt {
    color: #006eff;
}

.fa-js-square {
    color: #fff906;
}

.fa-git-alt {
    color: #ff6600;
}

.fa-python {
    color: #ece90d;
}

.fa-java {
    color: #0066ff;
}

.fa-android {
    color: #9fe927;
}