.banner-principal{
    display: flex;
    align-items: center;
    margin: 20px;

    border-bottom: 2px solid red;
}

.banner-principal img{
    width: 500px;
    height: auto;
}

.apresentacao-projeto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px;
    padding: 20px;
    text-align: justify; 
}

.apresentacao-projeto h1{
    font-size: 8rem;
}

.apresentacao-projeto p{
    margin-left: 150px;
    margin-right: 150px;

}

.functions-members {
    display: flex;
    margin: 20px; 
}

.functions, .membros {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px; 
}

.functions, .membros {
    flex: 1;
    margin-right: 20px;
}

.membros{
    max-width: 500px;
}

.functions h1, .membros h1 {
    font-size: 2.5rem;
    margin-bottom: 10px; 
}

.functions ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0; 
}

.functions li {
    margin-bottom: 10px;
}

.functions h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px; 
}

.functions p {
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 320px) and (max-width: 1200px) {
    html{
        font-size: 50%;
    }

    .banner-principal, .functions-members{
        flex-direction: column;
    }

    .apresentacao-projeto p{
        margin: 0;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    html{
        font-size: 75%;
    }
}

@media screen and (max-width: 1440px) {
    html{
        font-size: 80%;
    }   
}