*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    min-height: 100%;
    /* background-image:  url(img/Fondo.jpg);
    background-attachment: fixed;
    background-repeat: round; */
    background-color: maroon;
    margin: 0;
}

.bloque-header{
    grid-area: bloque-header;
    background: #001731;
    display: flex;
    flex-flow: wrap;
    height: auto;
}

#cont-logo-foto{
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
}

#fotoperfil{
    width: 20%;
    border-radius: 100%;
    align-self: center;
    margin: 15px;
}

#logo-kw{
    font-family: Arial, Helvetica, sans-serif;
    color: yellow;
    font-style: italic;
    font-size: 145px;
    font-weight: 900;
    margin: 0;
    margin-left: 15px;
}

#cont-incons{
    display: flex;
    width: 80%;
    justify-content: space-evenly;
    align-items: center;
}

.icontacto{
    display: flex;
    height: 7vw;
    border-radius: 100%;
}
.icontacto:hover{
    box-shadow: 0px 0px 15px 15px yellow;
    border-radius: 100%;
}
#perfil{
    text-align: justify;
    align-self: center;
    color: aliceblue;
    border-radius: 34px;
    background: black;
    opacity: 0.7;
    width: 90%;
    border: double;
    padding: 30px;
    font-size: 3vw;
}
#cont-perfil{
    display: flex;
    width: 100%;
}
#cont-ft-nom{
    display: flex;
}
.bloque-proyectos{
    grid-area: bloque-proyectos;
}
#cont-proyectos{
    display: flex;
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    height: auto;
}

#nodo{
    text-align: center;
    width: 12em;
    height: 12em;
    margin: 40px;
    border-radius: 10%;
}
.img {
    height: 100%;
    width: 100%;
    object-position: center center;
    border-radius: 40px;
    border: solid 1px black;
}
.img:hover{
    box-shadow: 0px 0px 15px 15px yellowgreen;
    border-radius: 100%;
}
#nombre-proyecto{
    text-align: center;
    font-family: Verdana;
    color: #001731;
    font-size: 2em;
}
.bloque-footer{
    grid-area: bloque-footer;
    background: #001731;
    text-align: center;
    height: 81px;
    color: white;
}