*{
    padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
    background-color: #00334c;
}
header{
    width: 100%;
    margin:auto;
}
h1{
    display: none;
    text-align: center;
    font-size: 1px;
    margin-top: 10px;
    text-transform: uppercase;
}
main{
    display: block;
    width: 100%;
    height: auto;
    align-content: center;
}
.logo{
    display: block;
    width: 60%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
content{
    flex: none;
    display: block;
    width: 100%;
}
.logotexto{
    margin-top: 60px;
    display: block;
    width: 60%;
    height:auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}
footer{
    padding-top: 0px;
    width: 100%;
    flex: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;   
}
footer p{
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1em;
    color: aqua;
}

footer img{
    display: block; /* Asegura que la imagen se comporte como un bloque */
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    height: auto;
    
}
@media screen and (max-width: 700px){
    main{
    width: 100%;
    height: auto;
}
.logo{
    display: block;
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
content{
    flex: none;
    width: 100%;
    height: 80px;
}

}