body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: black;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background:#FFE4AA;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

h1{
    margin-left: 10%;
}

.menu-btn {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 50%;
}

.menu-btn img{
    width: 40px;
    height: 40px;
}

.menu {
    display: none;
    position: absolute;
    top: 80px; 
    left: 85%; 
    border: 1px solid #ddd;
    background-color: #ffffff;
    padding: 10px;
    width: 200px;
    z-index: 9999; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.menu a {
    display: block;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    border-radius: 8px;
}

.inicio a:hover {
    color: #FCA699;
}

.quem-somos a:hover {
    color: #E2869B;
}
.tema a:hover {
    color: #C9729F;
}
.comunidade a:hover {
    color: #583B7E;
}

main {
    flex: 1;
    padding: 20px;
    background: white; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
section#quem-somos {
    text-align: center;
}

h2 {
    color: #583B7E;
    margin-bottom: 20px;
}


.integrante1 {
    display: inline-block;
    width: 225px;
    margin: 50px;
    text-align: center;
    padding: 15px;
    background-color: #FFE4AA; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.integrante1 img {
    width: 115px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.integrante1 p {
    font-size: 14px;
}

.integrante1 a {
    color: rgb(54, 54, 141); 
    text-decoration: none;
}

.integrante1 a:hover {
    text-decoration: underline;
}

.integrante2 {
    display: inline-block;
    width: 225px;
    margin: 50px;
    text-align: center;
    padding: 15px;
    background-color: #FCA699; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.integrante2 img {
    width: 115px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.integrante2 p {
    font-size: 14px;
}

.integrante2 a {
    color: rgb(84, 84, 221); 
    text-decoration: none;
}

.integrante2 a:hover {
    text-decoration: underline;
}

.integrante3 {
    display: inline-block;
    width: 225px;
    margin: 50px;
    text-align: center;
    padding: 15px;
    background-color: #E2869B; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.integrante3 img {
    width: 115px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.integrante3 p {
    font-size: 14px;
}

.integrante3 a {
    color: rgb(75, 75, 197); 
    text-decoration: none;
}

.integrante3 a:hover {
    text-decoration: underline;
}

.integrante4 {
    display: inline-block;
    width: 225px;
    margin: 50px;
    text-align: center;
    padding: 15px;
    background-color: #C9729F; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.integrante4 img {
    width: 115px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.integrante4 p {
    font-size: 14px;
}

.integrante4 a {
    color: rgb(77, 77, 198); 
    text-decoration: none;
}

.integrante4 a:hover {
    text-decoration: underline;
}

.integrante5 {
    display: inline-block;
    width: 225px;
    margin: 50px;
    text-align: center;
    padding: 15px;
    background-color: #583B7E; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.integrante5 img {
    width: 115px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.integrante5 p {
    font-size: 14px;
}

.integrante5 a {
    color: rgb(138, 138, 228); 
    text-decoration: none;
}

.integrante5 a:hover {
    text-decoration: underline;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer .logo {
    width: 150px;
    display: block;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
}
