* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

footer {
    width: 100%;
    height: 300px;
    background-color: rgb(63, 67, 99);
    color: white;
}

.footer {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left {
    width: 33.33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left h1 {
    color: aquamarine;
}

.left p {
    width: 80%;
    text-align: justify;
}

.medio {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lista {
    width: fit-content;
    height: 30%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.right {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lista-2 {
    width: fit-content;
    height: 40%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.lista-2 a {
    color: white;
    text-decoration: none;
}

.lista-2 a:hover {
    color: aquamarine;
    transition: ease .5s;
}

@media screen and (max-width: 1000px) {
    .left h1 {
        font-size: 25px;
        text-align: center;
    }
}