* {
    padding: 0;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

header {
    background-color: white;
    width: 100%;
    height: 15vh;
}

header .logo {
    width: 20%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .navegacion {
    width: 80%;
    float: left;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

header .navegacion ul li {
    list-style: none;
}

header .navegacion ul li a {
    text-decoration: none;
    color: white;
    background-color: #00adff;
    padding: 10px;
    padding-right: 30px;
    padding-left: 30px;
}

main {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 157, 255)
}

main .portada {
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(recursos/imagen-agua.jpg);
    background-position: center;
}

main .portada h1 {
    color: white;
    font-size: 5rem;
}

main .seccion-2 {
    width: 90%;
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
}

main .seccion-2 .izquierda {
    width: 45%;
    height: 100%;
    float: left;
}

main .seccion-2 .izquierda img {
    width: 500px;
}

main .seccion-2 .derecha {
    width: 40%;
    height: 100%;
    margin-left: 5%;
    float: left;
    padding-top: 5%;
    padding-bottom: 5%;
}

main .seccion-2 .derecha h2 {
    font-size: 3rem;
}

main .seccion-2 .derecha p {
    margin-top: 10%;
    font-size: 1.3rem;
}

main .seccion-2 .derecha button {
    margin-top: 10%;
    padding: 2%;
    padding-left: 6%;
    padding-right: 6%;
    font-size: 1.5rem;
    background-color: white;
    border-color: #00adff;
    color: #00adff;
    border-width: 5px;
    font-weight: bold;
    cursor: pointer;
}

main .seccion-2 .derecha button:hover {
    background-color: #00adff;
    color: white;
}

main .seccion-3 {
    width: 100%;
    height: 65vh;
    margin-top: 5%;
    background-color: #00adff;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .seccion-3 h2 {
    text-align: center;
    font-size: 30pt;
    text-transform: uppercase;
    margin-left: 5%;
    margin-right: 5%;
    color: white;
}