*{
    margin: 0px;
}
header{
   display: flex;
   width: 100vw;
   height: 25vmax;
}
.logo{
    width: 25vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.nombre-empresa{
    width: 45vw;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-image: url(imageneses/mar_header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    justify-content: center;
}
.nombre-empresa h2{
    font-size: 7vw;
    color: rgb(250, 250, 250);
    text-shadow: 0vw 0vw 1.5vw rgb(0, 0, 0);
}
.nombre-empresa h2:hover{
    color: greenyellow;
}
.logo img{
    width: 20vw;
}
header nav{
    background-color: #6699bc;
}
header .logo{
    background-color: #6699bc;
}
nav{
    width: 30vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nav-link{
    color: black;
    margin: 10px 2px 10px 20px;
    font-size: 3vw;
}
a{
    text-decoration: none;
}
header a:hover{
    color: blueviolet;
}
a:visited{
    color: black;
}
#cuerpo{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-image: linear-gradient(
       0deg,
       rgba(0,0,0,0.5),
       rgb(0,0,0,0.5)
    ),url("imageneses/buque_body_primera.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 20px;
    padding-bottom: 20px;
}
#cuerpo h2{
    color: white;
    font-size: 3vw;
    margin-top: 20px;
}
#cuerpo p{
    width: 70vw;
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5vw;
}
#img img{
    width: 33%;
}
#img_nosotros{
    width: 60vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
footer{
    background-color: rgba(30,30, 30, .85);
    color: white;
    text-align: center;
    font-size: 100%;
    padding: 0.75%;
    width: 100vw;
}
footer span{
    font-size: 90%;
}
@media(max-width:900px){
    #img{
        display: none;
    }
}
   