* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: content-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}


header {
    background-color: #040234;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}

header .logo img {
    max-width: 100%;
    height: auto;
}
 
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
 
header nav ul li a {
    color: white; 
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
 
header nav ul li a:hover {
    color: #6c5ce7; 
}

nav {
    
    text-align: center;
    padding-top: 60px;
    
}

.textnav {
    color: white;
}

.search {
    padding-top: 25px;

}

.textsearch {
    color: white;
    text-align:left;
}

/* Footer */
footer{
    background-color: #040234;
    color: white;
    height: 120px;
    display: flex;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.footertext {
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: auto;
    margin-left:15px ;
}

.logo_footer {
    margin-top: auto;
    margin-bottom: auto;
}

.imgfooter{
    margin-top: auto;
    margin-bottom: auto;
    margin-left:auto;
    margin-right: 15px;
}

main{
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 30px;
}

.galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.membro:hover {
    transform: translateY(-5px);
}