body {
    margin: 0;
    padding: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Lato', sans-serif;
    background-color: #cedbdb;
}

a {
    text-decoration: none;
    display: inline;
    color:black
}

header {
    width: 100%;
    height: 140px;
    display: grid;
    grid-template-rows: 1fr 1fr;
}
header .header-icon-container {
    width: 100%;
    height: 50px;
    display: grid;
    background-color: #687e8d;
}

header .header-icon-container .icons {
    margin-right: 50px;
    width: 300px;
    height: auto;
    display: flex;
    justify-items: flex-end;
    align-items: center;
    justify-content: space-between;
    justify-self: end;
}

header .icons span::before {
    font-size: 30px;
    color:#e1bc86;
}

nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 90px;
    background-color: #cedbdb;
    
}
nav .nav-logo-container {
    margin-left: 50px;
}

nav .nav-logo-container img {
    width: 180px;
    margin-top: 5px;
}

nav .profile-link {
    display: flex;
    margin-right: 50px;
    align-items: center;
    justify-content: flex-end;
}

nav .profile-link a {
    color: #3c4f58;
    border-bottom: 1px solid #3c4f58;
}
main .info-post-container {
    width: 90%;
    height: 480px;
    margin: 0 auto;
    background-image: url(../assets/programmer-1653351_1280.png);
    background-repeat: no-repeat;
    background-position: center;
}
main .info-post-container h1 {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
    margin-top: 25px;
    width: 80%;
    height: 80px;
    align-items: center;
    justify-content: center;
    background-color: #e1bc86;
    border-radius: 6px;
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.5);
    color: #3c4f58;
}
.blogs-post-container h3 {
    display: flex;
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 30px;
    width: auto;
    height: 80px;
    align-items: center;
    background-color: #3c4f58;
    color: #cedbdb;
    font-size: 30px;
}
.blogs-post-container .general-container {
    display: grid;
    margin: auto;
    width: 95%;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
}
.blogs-post-container .post-container {
    display: inline-block;
    margin: 50px 15px;
    padding-left: 10px;
    width: 90%;
    color: #3c4f58;
}
.blogs-post-container .post-container .tittle-container {
    font-weight: bold;
}
.blogs-post-container .post-container p {
    margin-bottom: 35px;
    text-align: justify;
    color: #3c4f58;
    font-weight: bold;
}

.blogs-post-container .post-container img {
    width: 100%;
}

.blogs-post-container .post-container a {
    padding: 10px 20px;
    background-color: #3c4f58;
    color: #cedbdb;
}

.blogs-post-container .post-container a:hover {
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.5);
    transition-duration: 0.25s;
}
footer {
    width: 100%;
    height: 90px;
    background-color: #3c4f58;
    border-top: 35px solid #e1bc86;
}
footer p {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #cedbdb;
}