*{
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    display: inline;
    color: #f0f6fc;
    cursor: pointer;
}

:root{
    font-size: 62.5%;
}
header{
    width: 100%;
    height: 120px;
    display: grid;
    grid-template-rows: 1fr 1fr;
}
section.header-icons-cotainer{
    width: 100%;
    height: 100%;
    background-color: #161b22;
    border-bottom: 1px solid #30363d;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
section.header-icons-cotainer div.icons{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 50px;
}
section.header-icons-cotainer div.icons img{
    margin: 0 18px;
    width: 20px;
    height: 20px;
}
/*Segunda parte del nav*/
nav{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #121212;
}
section.nav-logo-container{
    margin-left: 20px;
    display: flex;
    align-items: center;
}
section.nav-logo-container a{
    display: flex;
    align-items: center;
}
section.nav-logo-container img{
    height: 40px;
}
section.nav-logo-container span{
    font-weight: bold;
    font-size: 2rem;
    margin-left: 8px;
    color: #f0f6fc;
}

section.profile-link{
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
section.profile-link a{
    font-weight: bold;
    font-size: 2rem;
    margin-left: 8px;
    color: #f0f6fc;
}
main{
    width: 100%;
    min-width: 320px;
    height: auto;
    background-color: #171717;
}
figure.blogpost-img-container{
    width: 85%;
    min-width: 320px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 20px;
}
figure.blogpost-img-container img{
    width: 100%;
}
section.blogpost-main-container{
    width: 80%;
    min-width: 320px;
    max-width: 1000px;
    margin: auto;
    font-size: 1.6rem;
    color: #f0f6fc;
    line-height: 2.2rem;
}
section.blogpost-main-container span{
    display: inline-block;
    width: 100%;
    height: 30px;
    color: #778899;
    border-bottom: 1px solid white;
    margin-bottom: 12px;
}
div.grid-container{
    width: 100%;
    height: auto;
}
div.grid-container h1{
    font-size: 3.5rem;
    line-height: 3.5rem;
    margin-bottom: 8px;
}
div.grid-container p{
    margin-bottom: 8px;
    text-align: justify;
}
figure.image-post{
    width: 100%;
    margin-bottom: 12px;
}
figure.image-post img{
    width: 100%;
    border-radius: 8px;
}
figure.image-post figcaption{
    text-align: center;
}
section.contac-main-container > div{
    display: grid;
    width: 70%;
    max-width: 340px;
    grid-template-columns: 1fr 3fr;
    gap: 12px;
}
section.contac-main-container img{
    width: 50px;
}
section.contac-main-container a{
    color: #f0f6fc;
    font-size: 1.4rem;
    font-weight: bold;
}
section.contac-main-container p{
    color: #f0f6fc;
    font-size: 1.4rem;
}

section.contac-main-container{
    width: 100%;
    height: 150px;
    min-width: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #121212;
    margin-top: 20px;
    place-items: center;
}

footer{
    width: 100%;
    height: 60px;
    background-color: #161b22;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.6rem;
    border-top: 4px solid black;
}
@media(max-width: 750px)
{
    section.contac-main-container{
        grid-template-columns: 1fr;
    }
}