*{
    margin: 0px ;
    padding: 0px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    background-color: rgb(230, 230, 230);
    height: calc(100vh - 100px);
}

header{
    height: 100px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista {
    width: 50%;
    margin: 0px 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lista li {
    list-style: none;
}

.lista li a {
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    color:rgb(67, 110, 179) ;
    transition: all 0.26s;
}

.lista li a:hover{
    color: rgb(238, 155, 0);
}

.centro {
    width: 60%;
    margin: 40px 20%;
}

.centro img {
    width: 90%;
    margin: 0px 5%;
    margin-bottom: 0px;
}

.centro h1 {
    text-align: center;
    font-size: 80px;
    background: linear-gradient(to right, rgb(238, 155, 0) 40%,rgb(67, 110, 179) 60%);
    background-clip: text;
    color: transparent;
    width: auto;
}

@media (max-width:991px) {
    .lista {
        width: 90%;
        margin: 0px 5%;
    }

    .lista li a {
        font-size: 15px;
        font-weight: 500;
    }

    .centro {
        width: 94%;
        margin: 15vh 3%;
    }

    .centro img {
        width: 100%;
        margin: 10vh 0px;
    }

    .centro h1 {
        font-size: 11vw;
    }
}