* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, ;
}

.flex-container {
    display: flex;
}

body {
    background-image: url(./img/banner.png);
    background-color: rgb(42, 42, 151);
}

.cabeca {
    background-color: #090B13;
    
}

#list {
    font-weight: bold;
    display: flex;
    width: 100%;
    justify-content: space-around;
}



#list li {
    display: flex;
    justify-content: space-around;
    padding-left: 50px;
    margin-top: 10px;
}

.cabeca img {
    padding: 0 2px;
    margin: 0 1px;
}

.login {
    text-align: center;
    background-color: black;
    display: flex;
    margin-top: 10px;
    margin-left: 200px;
    padding-top: 5px;
    padding-left: 40px;
    border: 1px solid white;
    width: 130px;
    height: 30px;
    border-radius: 10px;
    font-weight: 700;
}

.principal, .getapp, .about, .empresas {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
}

.getapp {
    max-width: 50%;
    margin-left: 25%;
    background-color: #0063E5;
    border-radius: 5px;
    transition: filter .2s;
}

.getapp:hover {
    filter: brightness(1.2);
    cursor: pointer;
}

.about {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
}

.empresas img {
    margin-left: 30%;
}


footer {
    display: inline;
    text-align: center;
    margin-left: 20%;
    font-weight: 700;
}


