body{
    padding: 0px;
    margin: 0px;
}

header{
    display: flex;
    justify-content: space-between;
    background-color: #012E40 ;
}

.logotipo img{
    width: 100px;
    height: 100px;

}

nav ul{
    list-style: none;
    display: flex;
    gap: 10px;
}

nav li a{
    text-decoration: none;
    color: white;
    background-color: #3CA6A6;
    padding: 10px 20px;
    border-radius: 10px;
}

nav li a:hover{
    background-color:#026773;
}

.bannerPrincipal{
    background-color: #05719c ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.imagenBanner img{
    width: 800px;
    height: 600px;
}

.textoBanner{
    padding: 40px;
}